blob: acbfdc8cd75a11afe2a99de85cc9d063683863b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#if defined(SYSLIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: timer_gettime.c,v 1.4 1998/02/07 20:50:55 tholo Exp $";
#endif /* SYSLIBC_SCCS and not lint */
#include <signal.h>
#include <time.h>
#include <errno.h>
struct itimerspec;
/* ARGSUSED */
int
timer_gettime(timerid, value)
timer_t timerid;
struct itimerspec *value;
{
errno = ENOSYS;
return -1;
}
|