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