xref: /openbsd/lib/libc/sys/timer_create.c (revision db3296cf)
1 #if defined(SYSLIBC_SCCS) && !defined(lint)
2 static char rcsid[] = "$OpenBSD: timer_create.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 sigevent;
10 
11 /* ARGSUSED */
12 int
13 timer_create(clockid_t clock_id, struct sigevent *evp, timer_t *timerid)
14 {
15 	errno = ENOSYS;
16 	return -1;
17 }
18