]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MINICERN/packlib/kernlib/kerngen/kerngen/cf_open.h
This commit was generated by cvs2svn to compensate for changes in r2,
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / kerngen / cf_open.h
1 /*
2 * $Id$
3 *
4 * $Log$
5 * Revision 1.2  1997/02/04 17:35:35  mclareni
6 * Merge Winnt and 97a versions
7 *
8 * Revision 1.1.1.1.2.1  1997/01/21 11:30:25  mclareni
9 * All mods for Winnt 96a on winnt branch
10 *
11 * Revision 1.1.1.1  1996/02/15 17:49:17  mclareni
12 * Kernlib
13 *
14 *
15 *
16 * cf#open.inc
17 */
18 #if defined(CERNLIB_QMAPO)
19 #include <sys/file.h>        /*  Apollo                     */
20 #elif defined(CERNLIB_QMAMX)
21 #include <sys/types.h>       /*  AMX                        */
22 #include <sys/fcntl.h>
23 #include <sys/file.h>
24 #elif defined(CERNLIB_QMCRY)||defined(CERNLIB_QMHPX)||defined(CERNLIB_QMIBX)||defined(CERNLIB_QMSUN)
25 #include <fcntl.h>           /*  CRAY HPX IBX SUN           */
26 #elif defined(CERNLIB_QMIRT)||defined(CERNLIB_QMIRTD)
27 #include <fcntl.h>           /*  IRT                        */
28 #include <sys/mode.h>
29 #elif defined(CERNLIB_QMVAX)
30 #include <file.h>            /*  VAX/VMS                    */
31 #elif defined(CERNLIB_QMVMI)
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <fcntl.h>           /*  VMI Decstation             */
35 #elif defined(CERNLIB_QMDOS) || defined(CERNLIB_WINNT)
36 #ifdef __GNUC__
37 #include <sys/file.h>
38 #else
39 # ifdef WIN32
40 #  ifdef __STDC__
41 #   undef __STDC__
42 #  endif
43 #  include <io.h>
44 #  include <stdio.h>
45 #  include <fcntl.h>
46 # endif
47 #endif
48 #else
49 #include <sys/types.h>
50 #include <sys/stat.h>
51 #include <sys/fcntl.h>       /*  default Posix              */
52 #endif