summaryrefslogtreecommitdiff
path: root/src/unistd/usleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/usleep.c')
-rw-r--r--src/unistd/usleep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/usleep.c b/src/unistd/usleep.c
index e3869017..ce1c8144 100644
--- a/src/unistd/usleep.c
+++ b/src/unistd/usleep.c
@@ -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,