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:36  mclareni
0006 * Merge Winnt and 97a versions
0007 *
0008 * Revision 1.1.1.1.2.1  1997/01/21 11:30:26  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#seek.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/file.h>
0023 #elif defined(CERNLIB_QMOS9)
0024 #include <stdio.h>           /*  Microware OS-9             */
0025 #elif defined(CERNLIB_QMVAX)
0026 #include <file.h>            /*  VAX/VMS                    */
0027 #elif defined(CERNLIB_QMIRTD)
0028 #include <unistd.h>          /*  IRTD                */
0029 #elif defined(CERNLIB_QMDOS) || defined(CERNLIB_WINNT)
0030  #ifdef __GNUC__
0031   #include <sys/file.h>
0032   #include <unistd.h>
0033  #else
0034   #ifdef __STDC__
0035    #undef __STDC__
0036   #endif
0037   #include <stdio.h>
0038   #ifdef WIN32
0039    #include <io.h>
0040   #endif
0041  #endif
0042 #else
0043 #include <sys/types.h>       /*  default Posix              */
0044 #include <unistd.h>
0045 #endif