summaryrefslogtreecommitdiff
path: root/lib/libc/sys/timer_settime.c
blob: 22fb6dd40ad085a0387ac82132479f470a823477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#if defined(SYSLIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: timer_settime.c,v 1.5 2003/06/11 21:03:10 deraadt Exp $";
#endif /* SYSLIBC_SCCS and not lint */

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

struct itimerspec;

/* ARGSUSED */
int
timer_settime(timer_t timerid, int flags, const struct itimerspec *value,
    struct itimerspec *ovalue)
{
	errno = ENOSYS;
	return -1;
}