home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / g++ / sys / file.h < prev    next >
C/C++ Source or Header  |  1993-06-29  |  394b  |  29 lines

  1. #ifndef __libgxx_sys_file_h
  2.  
  3. extern "C"
  4. {
  5. #ifdef __sys_file_h_recursive
  6. #include_next <sys/file.h>
  7. #else
  8. #define fcntl __hide_fcntl
  9. #define open  __hide_open
  10. #define creat __hide_creat
  11.  
  12. #define __sys_file_h_recursive
  13.  
  14. #ifdef VMS
  15. #include "GNU_CC_INCLUDE:[sys]file.h"
  16. #else
  17. #include_next <sys/file.h>
  18. #endif
  19.  
  20. #undef fcntl
  21. #undef open
  22. #undef creat
  23.  
  24. #define __libgxx_sys_file_h 1
  25.  
  26. #endif
  27. }
  28. #endif
  29.