home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 9.ddi / usr / include / sys / unistd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-08  |  1.4 KB  |  57 lines

  1. /*    Copyright (c) 1990 UNIX System Laboratories, Inc.    */
  2. /*    Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T    */
  3. /*      All Rights Reserved      */
  4.  
  5. /*    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF         */
  6. /*    UNIX System Laboratories, Inc.                         */
  7. /*    The copyright notice above does not evidence any       */
  8. /*    actual or intended publication of such source code.    */
  9.  
  10. #ident    "@(#)/usr/include/sys/unistd.h.sl 1.1 4.0 12/08/90 42176 AT&T-USL"
  11. /* WARNING: This is an implementation-specific header,
  12. ** its contents are not guaranteed. Applications
  13. ** should include <unistd.h> and not this header.
  14. */
  15.  
  16. #ifndef _SYS_UNISTD_H
  17. #define _SYS_UNISTD_H
  18.  
  19.  
  20. /* command names for POSIX sysconf */
  21.  
  22. #define _SC_ARG_MAX    1
  23. #define _SC_CHILD_MAX    2
  24. #define _SC_CLK_TCK    3
  25. #define _SC_NGROUPS_MAX 4
  26. #define _SC_OPEN_MAX    5
  27. #define _SC_JOB_CONTROL 6
  28. #define _SC_SAVED_IDS    7
  29. #define _SC_VERSION    8
  30. #define _SC_PASS_MAX    9
  31. #define _SC_LOGNAME_MAX    10
  32. #define _SC_PAGESIZE    11
  33. #define _SC_XOPEN_VERSION 12
  34.  
  35. /* command names for POSIX pathconf */
  36.  
  37. #define _PC_LINK_MAX    1
  38. #define _PC_MAX_CANON    2
  39. #define _PC_MAX_INPUT    3
  40. #define _PC_NAME_MAX    4
  41. #define _PC_PATH_MAX    5
  42. #define _PC_PIPE_BUF    6
  43. #define _PC_NO_TRUNC    7
  44. #define _PC_VDISABLE    8
  45. #define _PC_CHOWN_RESTRICTED    9
  46.  
  47. #ifndef _POSIX_VERSION
  48. #define _POSIX_VERSION    198808L
  49. #endif
  50.  
  51. #ifndef _XOPEN_VERSION
  52. #define _XOPEN_VERSION 3
  53. #endif
  54.  
  55.  
  56. #endif    /* _SYS_UNISTD_H */
  57.