home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s038 / 10.ddi / 017.LIF / UNISTD.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-02  |  623 b   |  32 lines

  1. /* unistd.h - file access function prototypes
  2.  * $Version: 1.1 $
  3.  * Copyright (c) 1988-91 Intel Corporation, ALL RIGHTS RESERVED.
  4.  */
  5.  
  6.  
  7. #ifndef _unistdh
  8. #define _unistdh
  9. /*lint -library */
  10.  
  11. #define F_OK      0
  12. #define X_OK      1
  13. #define W_OK      2
  14. #define R_OK      4
  15.  
  16. /* seek */
  17. #ifndef SEEK_SET
  18. #define SEEK_SET  0
  19. #define SEEK_CUR  1
  20. #define SEEK_END  2
  21. #endif
  22.  
  23. #undef  _POSIX_JOB_CONTROL
  24. #undef  _POSIX_SAVED_IDS
  25. #define _POSIX_VERSION           198808L
  26. #define _POSIX_CHOWN_RESTRICTED  -1
  27. #define _POSIX_NO_TRUNC          -1
  28. #define _POSIX_VDISABLE          -1
  29.  
  30. #endif /* _unistdh */
  31.  
  32.