summaryrefslogtreecommitdiff
path: root/lib/libc/sys/timer_getoverrun.c
blob: 61d9fbe1d42d83391ce7af970e0c6f0e7cc4b91b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*	$OpenBSD: timer_getoverrun.c,v 1.6 2015/09/12 13:13:34 guenther Exp $ */

#include <time.h>
#include <errno.h>

int	timer_getoverrun(timer_t);
PROTO_DEPRECATED(timer_getoverrun);

int
timer_getoverrun(timer_t timerid)
{
	errno = ENOSYS;
	return -1;
}