home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 38.ddi / root.3 / usr / include / fcntl.h / fcntl.h
Encoding:
C/C++ Source or Header  |  1990-10-02  |  683 b   |  28 lines

  1. /*    Copyright (c) 1990 UNIX System Laboratories, Inc.    */
  2. /*    Copyright (c) 1988 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/fcntl.h.sl 1.2 5.0 08/27/90 38656 AT&T-USO 1.3"
  11.  
  12. #include <sys/types.h>
  13. #include <sys/fcntl.h>
  14.  
  15. #if defined(__STDC__)
  16.  
  17. extern int fcntl(int, int, ...);
  18. extern int open(const char *, int, ...);
  19. extern int creat(const char *, mode_t);
  20.  
  21. #else
  22.  
  23. extern int fcntl();
  24. extern int open();
  25. extern int creat();
  26.  
  27. #endif
  28.