branch update for HEAD-2003021201
[reactos.git] / lib / crtdll / misc / sleep.c
1 #include <windows.h>
2
3
4 void sleep(unsigned long timeout) 
5 {
6         Sleep((timeout)?timeout:1);
7 }