xref: /openbsd-src/lib/libc/sys/timer_settime.c (revision b725ae7711052a2233e31a66fefb8a752c388d7a)
1 #if defined(SYSLIBC_SCCS) && !defined(lint)
2 static char rcsid[] = "$OpenBSD: timer_settime.c,v 1.5 2003/06/11 21:03:10 deraadt Exp $";
3 #endif /* SYSLIBC_SCCS and not lint */
4 
5 #include <signal.h>
6 #include <time.h>
7 #include <errno.h>
8 
9 struct itimerspec;
10 
11 /* ARGSUSED */
12 int
13 timer_settime(timer_t timerid, int flags, const struct itimerspec *value,
14     struct itimerspec *ovalue)
15 {
16 	errno = ENOSYS;
17 	return -1;
18 }
19