xref: /openbsd/lib/libc/sys/timer_settime.c (revision 17df1aa7)
1 /*	$OpenBSD: timer_settime.c,v 1.6 2005/08/08 08:05:38 espie Exp $ */
2 
3 #include <signal.h>
4 #include <time.h>
5 #include <errno.h>
6 
7 struct itimerspec;
8 
9 /* ARGSUSED */
10 int
11 timer_settime(timer_t timerid, int flags, const struct itimerspec *value,
12     struct itimerspec *ovalue)
13 {
14 	errno = ENOSYS;
15 	return -1;
16 }
17