Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-21 10:04:38

0001 /*
0002 * $Id$
0003 *
0004 * $Log$
0005 * Revision 1.2  1997/02/04 17:35:35  mclareni
0006 * Merge Winnt and 97a versions
0007 *
0008 * Revision 1.1.1.1.2.1  1997/01/21 11:30:25  mclareni
0009 * All mods for Winnt 96a on winnt branch
0010 *
0011 * Revision 1.1.1.1  1996/02/15 17:49:17  mclareni
0012 * Kernlib
0013 *
0014 *
0015 *
0016 * cf#open.inc
0017 */
0018 #if defined(CERNLIB_QMAPO)
0019 #include <sys/file.h>        /*  Apollo                     */
0020 #elif defined(CERNLIB_QMAMX)
0021 #include <sys/types.h>       /*  AMX                        */
0022 #include <sys/fcntl.h>
0023 #include <sys/file.h>
0024 #elif defined(CERNLIB_QMCRY)||defined(CERNLIB_QMHPX)||defined(CERNLIB_QMIBX)||defined(CERNLIB_QMSUN)
0025 #include <fcntl.h>           /*  CRAY HPX IBX SUN           */
0026 #elif defined(CERNLIB_QMIRT)||defined(CERNLIB_QMIRTD)
0027 #include <fcntl.h>           /*  IRT                        */
0028 #include <sys/mode.h>
0029 #elif defined(CERNLIB_QMVAX)
0030 #include <file.h>            /*  VAX/VMS                    */
0031 #elif defined(CERNLIB_QMVMI)
0032 #include <sys/types.h>
0033 #include <sys/stat.h>
0034 #include <fcntl.h>           /*  VMI Decstation             */
0035 #elif defined(CERNLIB_QMDOS) || defined(CERNLIB_WINNT)
0036 #ifdef __GNUC__
0037 #include <sys/file.h>
0038 #else
0039 # ifdef WIN32
0040 #  ifdef __STDC__
0041 #   undef __STDC__
0042 #  endif
0043 #  include <io.h>
0044 #  include <stdio.h>
0045 #  include <fcntl.h>
0046 # endif
0047 #endif
0048 #else
0049 #include <sys/types.h>
0050 #include <sys/stat.h>
0051 #include <sys/fcntl.h>       /*  default Posix              */
0052 #endif