xref: /openbsd-src/lib/libc/sys/timer_delete.c (revision 8500990981f885cbe5e6a4958549cacc238b5ae6)
1 #if defined(SYSLIBC_SCCS) && !defined(lint)
2 static char rcsid[] = "$OpenBSD: timer_delete.c,v 1.4 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 /* ARGSUSED */
10 int
11 timer_delete(timer_t timerid)
12 {
13 	errno = ENOSYS;
14 	return -1;
15 }
16