#if defined(SYSLIBC_SCCS) && !defined(lint) static char rcsid[] = "$OpenBSD: timer_settime.c,v 1.3 1997/04/30 05:49:30 tholo Exp $"; #endif /* SYSLIBC_SCCS and not lint */ #include #include #include /* ARGSUSED */ int timer_settime(timerid, flags, value, ovalue) timer_t timerid; int flags; const struct itimerspec *value; struct itimerspec *ovalue; { errno = ENOSYS; return -1; }