nanosleep.c 143 B

123456789
  1. #include <errno.h>
  2. #include <sys/time.h>
  3. int
  4. nanosleep(const struct timespec *rqtp, struct timespec *rmtp)
  5. {
  6. errno = ENOSYS;
  7. return -1;
  8. }