blob: 4c5a79dfafb252a33a9a17cd4231d78893d5cb62 (
plain) (
blame)
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.2 1997/04/26 08:49:34 tholo Exp $";
#endif /* SYSLIBC_SCCS and not lint */
#include <signal.h>
#include <time.h>
#include <errno.h>
int
timer_getoverrun(timerid)
timer_t timerid;
{
errno = ENOSYS;
return -1;
}
|