home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / GNU_1OF3.ZIP / HEADERS.ZIP / g++-include / sys / stat.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-07  |  426 b   |  25 lines

  1. #ifndef __libgxx_sys_stat_h
  2.  
  3. extern "C"
  4. {
  5. #ifdef __sys_stat_h_recursive
  6. #include_next <sys/stat.h>
  7. #else
  8. #define __sys_stat_h_recursive
  9. #ifdef VMS
  10. #include "GNU_CC_INCLUDE:[sys]stat.h"
  11. #else
  12. #include_next <sys/stat.h>
  13. #endif
  14.  
  15. #define __libgxx_sys_stat_h 1
  16.  
  17. int       stat (const char *path, struct stat *buf);
  18. int       lstat (const char *path, struct stat *buf);
  19. int       fstat (int fd, struct stat *buf);
  20.  
  21. #endif
  22. }
  23.  
  24. #endif
  25.