File indexing completed on 2025-02-21 10:04:38
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
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