Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2012
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. namespace something {
  2. inline int stat(const char *path, struct stat *buf) {
  3. #ifdef WIN32
  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