diff options
author | Pierre Joye <pajoye@php.net> | 2009-01-19 02:29:24 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2009-01-19 02:29:24 +0000 |
commit | b54a6fc5b3e5e8b7af6003e08a917a2de0334419 (patch) | |
tree | b46b30b0bbe8731e8c55c6261a7acb81dc874105 /win32/unistd.h | |
parent | c4d2527ebeff53c929108f8b22a69185b92bf28d (diff) | |
download | php-git-b54a6fc5b3e5e8b7af6003e08a917a2de0334419.tar.gz |
- add nanosleep
- expose nanosleep and usleep
- [DOC] time_ nanosleep and time_ sleep_ until available on windows
Diffstat (limited to 'win32/unistd.h')
-rw-r--r-- | win32/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/unistd.h b/win32/unistd.h index 96e0aedc13..0b9446149c 100644 --- a/win32/unistd.h +++ b/win32/unistd.h @@ -1,4 +1,4 @@ #ifndef _PHP_WIN32_UNISTD_H #define _PHP_WIN32_UNISTD_H -void usleep(unsigned int useconds); +PHPAPI int usleep(unsigned int useconds); #endif |