win.h 193 B

1234567891011121314
  1. /*
  2. Compatibility functions for windows msvc compiler
  3. */
  4. #ifndef _WIN_H_
  5. #define _WIN_H_
  6. #ifdef _MSC_VER
  7. #define strncasecmp(x,y,z) _strnicmp(x,y,z)
  8. void usleep(__int64 usec);
  9. #endif
  10. #endif