home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) 1990 UNIX System Laboratories, Inc. */
- /* Copyright (c) 1988 AT&T */
- /* All Rights Reserved */
-
- /* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF */
- /* UNIX System Laboratories, Inc. */
- /* The copyright notice above does not evidence any */
- /* actual or intended publication of such source code. */
-
- #ident "@(#)/usr/include/fcntl.h.sl 1.2 5.0 08/27/90 38656 AT&T-USO 1.3"
-
- #include <sys/types.h>
- #include <sys/fcntl.h>
-
- #if defined(__STDC__)
-
- extern int fcntl(int, int, ...);
- extern int open(const char *, int, ...);
- extern int creat(const char *, mode_t);
-
- #else
-
- extern int fcntl();
- extern int open();
- extern int creat();
-
- #endif
-