Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line | 
|---|---|---|---|
| 26 | pmbaty | 1 | /* ACC -- Automatic Compiler Configuration | 
| 2 | |||
| 3 |    Copyright (C) 1996-2004 Markus Franz Xaver Johannes Oberhumer | ||
| 4 |    All Rights Reserved. | ||
| 5 | |||
| 6 |    This software is a copyrighted work licensed under the terms of | ||
| 7 |    the GNU General Public License. Please consult the file "ACC_LICENSE" | ||
| 8 |    for details. | ||
| 9 | |||
| 10 |    Markus F.X.J. Oberhumer | ||
| 11 |    <markus@oberhumer.com> | ||
| 12 |    http://www.oberhumer.com/ | ||
| 13 |  */ | ||
| 14 | |||
| 15 | |||
| 16 | #ifndef __ACC_INCE_H_INCLUDED | ||
| 17 | #define __ACC_INCE_H_INCLUDED 1 | ||
| 18 | |||
| 19 | /* extra system includes */ | ||
| 20 | |||
| 21 | #if defined(HAVE_STDARG_H) | ||
| 22 | #  include <stdarg.h> | ||
| 23 | #endif | ||
| 24 | #if defined(HAVE_CTYPE_H) | ||
| 25 | #  include <ctype.h> | ||
| 26 | #endif | ||
| 27 | #if defined(HAVE_ERRNO_H) | ||
| 28 | #  include <errno.h> | ||
| 29 | #endif | ||
| 30 | #if defined(HAVE_MALLOC_H) | ||
| 31 | #  include <malloc.h> | ||
| 32 | #endif | ||
| 33 | #if defined(HAVE_ALLOCA_H) | ||
| 34 | #  include <alloca.h> | ||
| 35 | #endif | ||
| 36 | #if defined(HAVE_FCNTL_H) | ||
| 37 | #  include <fcntl.h> | ||
| 38 | #endif | ||
| 39 | #if defined(HAVE_DIRENT_H) | ||
| 40 | #  include <dirent.h> | ||
| 41 | #endif | ||
| 42 | #if defined(HAVE_SETJMP_H) | ||
| 43 | #  include <setjmp.h> | ||
| 44 | #endif | ||
| 45 | #if defined(HAVE_SIGNAL_H) | ||
| 46 | #  include <signal.h> | ||
| 47 | #endif | ||
| 48 | #if defined(TIME_WITH_SYS_TIME) | ||
| 49 | #  include <sys/time.h> | ||
| 50 | #  include <time.h> | ||
| 51 | #elif defined(HAVE_TIME_H) | ||
| 52 | #  include <time.h> | ||
| 53 | #endif | ||
| 54 | #if defined(HAVE_UTIME_H) | ||
| 55 | #  include <utime.h> | ||
| 56 | #elif defined(HAVE_SYS_UTIME_H) | ||
| 57 | #  include <sys/utime.h> | ||
| 58 | #endif | ||
| 59 | |||
| 60 | /* DOS, OS/2 & Windows */ | ||
| 61 | #if defined(HAVE_IO_H) | ||
| 62 | #  include <io.h> | ||
| 63 | #endif | ||
| 64 | #if defined(HAVE_DOS_H) | ||
| 65 | #  include <dos.h> | ||
| 66 | #endif | ||
| 67 | #if defined(HAVE_DIRECT_H) | ||
| 68 | #  include <direct.h> | ||
| 69 | #endif | ||
| 70 | #if defined(HAVE_SHARE_H) | ||
| 71 | #  include <share.h> | ||
| 72 | #endif | ||
| 73 | #if defined(ACC_CC_NDPC) | ||
| 74 | #  include <os.h> | ||
| 75 | #endif | ||
| 76 | |||
| 77 | /* TOS */ | ||
| 78 | #if defined(__TOS__) && (defined(__PUREC__) || defined(__TURBOC__)) | ||
| 79 | #  include <ext.h> | ||
| 80 | #endif | ||
| 81 | |||
| 82 | #endif /* already included */ | ||
| 83 | |||
| 84 | |||
| 85 | /* | ||
| 86 | vi:ts=4:et | ||
| 87 | */ |