xref: /openbsd-src/lib/libc/sys/timer_settime.c (revision 62a742911104f98b9185b2c6b6007d9b1c36396c)
1 #if defined(SYSLIBC_SCCS) && !defined(lint)
2 static char rcsid[] = "$OpenBSD: timer_settime.c,v 1.4 1998/02/07 20:50:55 tholo 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(timerid, flags, value, ovalue)
14 	timer_t timerid;
15 	int flags;
16 	const struct itimerspec *value;
17 	struct itimerspec *ovalue;
18 {
19 	errno = ENOSYS;
20 	return -1;
21 }
22