NetBSD/lib/libc/sys/timer_getoverrun.c

12 lines
139 B
C

#include <signal.h>
#include <time.h>
#include <errno.h>
int
timer_getoverrun(timerid)
timer_t timerid;
{
errno = ENOSYS;
return -1;
}