xref: /openbsd-src/lib/libc/sys/timer_getoverrun.c (revision 47911bd667ac77dc523b8a13ef40b012dbffa741)
1 #if defined(SYSLIBC_SCCS) && !defined(lint)
2 static char rcsid[] = "$OpenBSD: timer_getoverrun.c,v 1.3 1997/04/30 05:49:29 tholo 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_getoverrun(timerid)
12 	timer_t timerid;
13 {
14 	errno = ENOSYS;
15 	return -1;
16 }
17