cpuminer/compat.h

16 lines
186 B
C
Raw Normal View History

2010-11-26 21:50:36 +01:00
#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__ */