blob: fa47221fed24a266bc1f4c2931ea640285b32e5d [file] [log] [blame]
#include <errno.h>
#include <sys/time.h>
int setitimer(int which, const struct itimerval* restrict new, struct itimerval* restrict old) {
errno = ENOSYS;
return -1;
}