diff options
Diffstat (limited to 'newlib/libc/posix/sleep.c')
-rw-r--r-- | newlib/libc/posix/sleep.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/newlib/libc/posix/sleep.c b/newlib/libc/posix/sleep.c deleted file mode 100644 index f7c780ef0..000000000 --- a/newlib/libc/posix/sleep.c +++ /dev/null @@ -1,22 +0,0 @@ -/* libc/posix/sleep.c - sleep function */ - -/* Written 2000 by Werner Almesberger */ - -#ifdef HAVE_NANOSLEEP - -#include <errno.h> -#include <time.h> -#include <unistd.h> - -unsigned sleep(unsigned seconds) -{ - struct timespec ts; - - ts.tv_sec = seconds; - ts.tv_nsec = 0; - if (!nanosleep(&ts,&ts)) return 0; - if (errno == EINTR) return ts.tv_sec; - return -1; -} - -#endif |