/* @(#)aglsys.h 17.1.1.1 (OAA-ASTRONET) 01/25/02 17:31:40 */ /* * HEADER : aglsys.h - Vers 3.6.002 - Sep 1993 - L. Fini, OAA * - Vers 3.6.001 - May 1993 - L. Fini, OAA * - Vers 3.6.000 - Oct 1991 - L. Fini, OAA * * * This file includes system dependent definition files. * * The symbol selecting the target system is defined at the cc command * level */ #ifndef SYSDEPH_DEF #define SYSDEPH_DEF #ifndef ANSI #ifdef ansi #define ANSI #endif #ifdef __STDC__ #define ANSI #endif #endif #ifdef MIDAS #include #else #include #endif #if MID_OS_MSDOS #include /* MS-DOS dependencies */ #endif #if MID_OS_VMS #include /* VAX/VMS dependencies */ #endif #if MID_OS_SYSV #include /* Unix system V dependencies */ #endif #if MID_OS_SYSV_V2 #include /* Unix system V dependencies */ #endif #if MID_OS_ULTRIX #include /* Unix ULTRIX dependencies */ #endif #if MID_OS_BSD #include /* Unix BSD dependencies */ #endif #if MID_OS_POSIX #include /* POSIX dependencies */ #endif #ifdef UNIX #include /* Generic Unix dependencies */ #endif #ifdef MIDAS #ifdef NO_STRING_H #include #else #include #endif #ifdef NO_STRCHR #define strchr index #define strrchr rindex #endif #ifndef strchr char *strchr(); #endif #ifndef strrchr char *strrchr(); #endif #endif #endif