/* Copyright (C) 2000 Aladdin Enterprises. All rights reserved. This file is part of AFPL Ghostscript. AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author or distributor accepts any responsibility for the consequences of using it, or for whether it serves any particular purpose or works at all, unless he or she says so in writing. Refer to the Aladdin Free Public License (the "License") for full details. Every copy of AFPL Ghostscript must include a copy of the License, normally in a plain ASCII text file named PUBLIC. The License grants you the right to copy, modify and redistribute AFPL Ghostscript, but only under certain conditions described in the License. Among other things, the License requires that the copyright notice and this notice be preserved on all copies. */ /*$Id$ */ /* Declaration of the O_* flags for open */ #ifndef fcntl__INCLUDED # define fcntl__INCLUDED /* * This absurd little file is needed because Microsoft C, in defiance * of multiple standards, does not define the O_ modes for 'open'. */ /* * We must include std.h before any file that includes (or might include) * sys/types.h. */ #include "std.h" #include #if !defined(O_APPEND) && defined(_O_APPEND) # define O_APPEND _O_APPEND #endif #if !defined(O_BINARY) && defined(_O_BINARY) # define O_BINARY _O_BINARY #endif #if !defined(O_CREAT) && defined(_O_CREAT) # define O_CREAT _O_CREAT #endif #if !defined(O_EXCL) && defined(_O_EXCL) # define O_EXCL _O_EXCL #endif #if !defined(O_RDONLY) && defined(_O_RDONLY) # define O_RDONLY _O_RDONLY #endif #if !defined(O_RDWR) && defined(_O_RDWR) # define O_RDWR _O_RDWR #endif #if !defined(O_TRUNC) && defined(_O_TRUNC) # define O_TRUNC _O_TRUNC #endif #if !defined(O_WRONLY) && defined(_O_WRONLY) # define O_WRONLY _O_WRONLY #endif #endif /* fcntl__INCLUDED */