blob: d01181901c7e7b7e6db88e639453c5f85127a17a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* $NetBSD: timer_settime.c,v 1.3 1998/11/15 17:23:00 christos Exp $ */
#include <signal.h>
#include <time.h>
#include <errno.h>
/* ARGSUSED */
int
timer_settime(timerid, flags, value, ovalue)
timer_t timerid;
int flags;
const struct itimerspec *value;
struct itimerspec *ovalue;
{
errno = ENOSYS;
return -1;
}
|