remove another invalid skip of locking in ungetwc
[oweals/musl.git] / src / unistd / usleep.c
index e386901719be1a38a777b8a5bf9889d29f254d62..6c96652691e0dabacacde4885f74466d2772a661 100644 (file)
@@ -1,7 +1,8 @@
+#define _GNU_SOURCE
 #include <unistd.h>
 #include <time.h>
 
-int usleep(useconds_t useconds)
+int usleep(unsigned useconds)
 {
        struct timespec tv = {
                .tv_sec = useconds/1000000,