blob: 8be22104edf8e91fe40a9d8ca8d9e10cc99503de [file] [log] [blame]
#include <errno.h>
#include <sys/time.h>
int
nanosleep(const struct timespec *rqtp, struct timespec *rmtp)
{
errno = ENOSYS;
return -1;
}