win.h 169 B

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