diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-12-20 03:14:59 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-12-20 03:14:59 +0000 |
commit | 637a891264f4f81533e58f1b5ed850324ddfb134 (patch) | |
tree | e55e8a1efd01af1618a75ebeb93f873fb06c4a11 /src/include/unistd.h | |
parent | 1e322d4b4cc88111ad3a71f8201899c12e96ce1e (diff) | |
download | ipxe-637a891264f4f81533e58f1b5ed850324ddfb134.tar.gz |
Fix prototype of sleep() and move it to unistd.h
Diffstat (limited to 'src/include/unistd.h')
-rw-r--r-- | src/include/unistd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/unistd.h b/src/include/unistd.h index f3412d400..35dcf5845 100644 --- a/src/include/unistd.h +++ b/src/include/unistd.h @@ -4,6 +4,7 @@ #include <stddef.h> #include <stdarg.h> +extern unsigned int sleep ( unsigned int seconds ); extern int execv ( const char *command, char * const argv[] ); /** |