From c7490a6edd9b11a89712cae74aa11339fb8d1e68 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Wed, 10 Jul 2013 16:16:33 +0200 Subject: [PATCH] add usleep() to the header, already exported to dll --- win32/time.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/win32/time.h b/win32/time.h index f841a2b601f..d5d86eb1ed7 100644 --- a/win32/time.h +++ b/win32/time.h @@ -50,4 +50,6 @@ PHPAPI extern int setitimer(int which, const struct itimerval *value, PHPAPI int nanosleep( const struct timespec * rqtp, struct timespec * rmtp ); +PHPAPI int usleep(unsigned int useconds); + #endif