15 lines
230 B
C
15 lines
230 B
C
/* $NetBSD: timer_getoverrun.c,v 1.3 1998/11/15 17:23:00 christos Exp $ */
|
|
|
|
#include <signal.h>
|
|
#include <time.h>
|
|
#include <errno.h>
|
|
|
|
/* ARGSUSED */
|
|
int
|
|
timer_getoverrun(timerid)
|
|
timer_t timerid;
|
|
{
|
|
errno = ENOSYS;
|
|
return -1;
|
|
}
|