From 7623ff809242676ccd9dea7cb73026e7c679f290 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 4 Dec 2011 15:11:39 +0100 Subject: [PATCH] unistd.h now uses the __useconds_t from sortix/bits.h. --- libmaxsi/c/hsrc/unistd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmaxsi/c/hsrc/unistd.h b/libmaxsi/c/hsrc/unistd.h index 6d794ebf..f6a71256 100644 --- a/libmaxsi/c/hsrc/unistd.h +++ b/libmaxsi/c/hsrc/unistd.h @@ -73,6 +73,7 @@ __BEGIN_DECLS @include(gid_t.h) @include(off_t.h) @include(pid_t.h) +@include(useconds_t.h) /* TODO: These are not implemented in libmaxsi/sortix yet. */ #ifndef SORTIX_UNIMPLEMENTED @@ -166,7 +167,6 @@ int pipe(int [2]); ssize_t read(int, void*, size_t); unsigned sleep(unsigned); /*#if __POSIX_OBSOLETE <= 200112*/ -typedef unsigned int useconds_t; int usleep(useconds_t useconds); /*#endif*/ int unlink(const char*);