blob: a318991c0e43d7d07faab2518f452e508de6a9e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __COMPAT_H__
#define __COMPAT_H__
#ifdef WIN32
#include <windows.h>
static inline void sleep(int secs)
{
Sleep(secs * 1000);
}
#endif /* WIN32 */
#endif /* __COMPAT_H__ */
|