compat.h 186 B

123456789101112131415
  1. #ifndef __COMPAT_H__
  2. #define __COMPAT_H__
  3. #ifdef WIN32
  4. #include <windows.h>
  5. static inline void sleep(int secs)
  6. {
  7. Sleep(secs * 1000);
  8. }
  9. #endif /* WIN32 */
  10. #endif /* __COMPAT_H__ */