Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. namespace something {
  2. inline int stat(const char *path, struct stat *buf) {
  3. #if defined(_WIN32) || defined(_WIN64) || defined(_MSC_VER)
  4. return ::_stat(path, buf);
  5. #else
  6. return ::stat(path, buf);
  7. #endif
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement