summaryrefslogtreecommitdiff
path: root/lib/libc/sys/timer_getoverrun.c
blob: 2848e5214400ead51c5b43ffb60d9e4f2a69429e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*	$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;
}