]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MICROCERN/kerngen/cf_open.h
Merging the VirtualMC branch to the main development branch (HEAD)
[u/mrichter/AliRoot.git] / MICROCERN / kerngen / cf_open.h
CommitLineData
fe4da5cc 1/*
2* $Id$
3*
4* $Log$
b9d0a01d 5* Revision 1.1.2.1 2002/07/11 17:14:49 alibrary
6* Adding MICROCERN
7*
8* Revision 1.1.1.1 1999/05/18 15:55:29 fca
9* AliRoot sources
10*
fe4da5cc 11* Revision 1.2 1997/02/04 17:35:35 mclareni
12* Merge Winnt and 97a versions
13*
14* Revision 1.1.1.1.2.1 1997/01/21 11:30:25 mclareni
15* All mods for Winnt 96a on winnt branch
16*
17* Revision 1.1.1.1 1996/02/15 17:49:17 mclareni
18* Kernlib
19*
20*
21*
22* cf#open.inc
23*/
24#if defined(CERNLIB_QMAPO)
25#include <sys/file.h> /* Apollo */
26#elif defined(CERNLIB_QMAMX)
27#include <sys/types.h> /* AMX */
28#include <sys/fcntl.h>
29#include <sys/file.h>
30#elif defined(CERNLIB_QMCRY)||defined(CERNLIB_QMHPX)||defined(CERNLIB_QMIBX)||defined(CERNLIB_QMSUN)
31#include <fcntl.h> /* CRAY HPX IBX SUN */
32#elif defined(CERNLIB_QMIRT)||defined(CERNLIB_QMIRTD)
33#include <fcntl.h> /* IRT */
34#include <sys/mode.h>
35#elif defined(CERNLIB_QMVAX)
36#include <file.h> /* VAX/VMS */
37#elif defined(CERNLIB_QMVMI)
38#include <sys/types.h>
39#include <sys/stat.h>
40#include <fcntl.h> /* VMI Decstation */
41#elif defined(CERNLIB_QMDOS) || defined(CERNLIB_WINNT)
42#ifdef __GNUC__
43#include <sys/file.h>
44#else
45# ifdef WIN32
46# ifdef __STDC__
47# undef __STDC__
48# endif
49# include <io.h>
50# include <stdio.h>
51# include <fcntl.h>
52# endif
53#endif
54#else
55#include <sys/types.h>
56#include <sys/stat.h>
57#include <sys/fcntl.h> /* default Posix */
58#endif