blob: 2b138ebe163155f6674413f7da529179ff36a9ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#if defined(SYSLIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: timer_getoverrun.c,v 1.4 2003/06/11 21:03:10 deraadt Exp $";
#endif /* SYSLIBC_SCCS and not lint */
#include <signal.h>
#include <time.h>
#include <errno.h>
/* ARGSUSED */
int
timer_getoverrun(timer_t timerid)
{
errno = ENOSYS;
return -1;
}
|