#ifndef __FILE_LOADED #define __FILE_LOADED 1 /**************************************************************************** ** ** - Manifest constants used by BSD open() function ** ***************************************************************************** ** Header is nonstandard ***************************************************************************** ** ** Copyright Digital Equipment Corporation 1993, 1997. All rights reserved. ** ** Restricted Rights: Use, duplication, or disclosure by the U.S. ** Government is subject to restrictions as set forth in subparagraph ** (c) (1) (ii) of DFARS 252.227-7013, or in FAR 52.227-19, or in FAR ** 52.227-14 Alt. III, as applicable. ** ** This software is proprietary to and embodies the confidential ** technology of Digital Equipment Corporation. Possession, use, or ** copying of this software and media is authorized only pursuant to a ** valid written license from Digital or an authorized sublicensor. ** ****************************************************************************** */ #pragma __nostandard /* ** This group of constants is shared with , protected with O_RDONLY */ #ifndef O_RDONLY # define O_RDONLY 000 # define O_WRONLY 001 # define O_RDWR 002 # define O_APPEND 010 # define O_CREAT 01000 # define O_TRUNC 02000 # define O_EXCL 04000 #endif /* ** This group is shared with too, protected with O_NDELAY */ #ifndef O_NDELAY # define O_NDELAY 004 # define O_NOWAIT 004 #endif #pragma __standard #endif /* __FILE_LOADED */