blob: d6f8bfb09d375e114f9f390a284eec72a95b517a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* $NetBSD: timer_settime.c,v 1.4 2000/07/14 07:36:32 kleink Exp $ */
#include <errno.h>
#include <signal.h>
#include <time.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;
}
|