remove obsolete and useless useconds_t type
[musl] / src / unistd / usleep.c
index e386901..ce1c814 100644 (file)
@@ -1,7 +1,7 @@
 #include <unistd.h>
 #include <time.h>
 
-int usleep(useconds_t useconds)
+int usleep(unsigned useconds)
 {
        struct timespec tv = {
                .tv_sec = useconds/1000000,