]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MINICERN/packlib/kernlib/kerngen/kerngen/cf_seek.h
This commit was generated by cvs2svn to compensate for changes in r2,
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / kerngen / cf_seek.h
1 /*
2 * $Id$
3 *
4 * $Log$
5 * Revision 1.2  1997/02/04 17:35:36  mclareni
6 * Merge Winnt and 97a versions
7 *
8 * Revision 1.1.1.1.2.1  1997/01/21 11:30:26  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#seek.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/file.h>
23 #elif defined(CERNLIB_QMOS9)
24 #include <stdio.h>           /*  Microware OS-9             */
25 #elif defined(CERNLIB_QMVAX)
26 #include <file.h>            /*  VAX/VMS                    */
27 #elif defined(CERNLIB_QMIRTD)
28 #include <unistd.h>          /*  IRTD                */
29 #elif defined(CERNLIB_QMDOS) || defined(CERNLIB_WINNT)
30  #ifdef __GNUC__
31   #include <sys/file.h>
32   #include <unistd.h>
33  #else
34   #ifdef __STDC__
35    #undef __STDC__
36   #endif
37   #include <stdio.h>
38   #ifdef WIN32
39    #include <io.h>
40   #endif
41  #endif
42 #else
43 #include <sys/types.h>       /*  default Posix              */
44 #include <unistd.h>
45 #endif