blob: ff42e9cd0c7f38ff5514113b00b770b8b3f93738 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <signal.h>
#include <time.h>
#include <errno.h>
int
timer_settime(timerid, flags, value, ovalue)
timer_t timerid;
int flags;
const struct itimerspec *value;
struct itimerspec *ovalue;
{
errno = ENOSYS;
return -1;
}
|