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_INCD_H_INCLUDED |
||
| 17 | #define __ACC_INCD_H_INCLUDED 1 |
||
| 18 | |||
| 19 | /* default system includes */ |
||
| 20 | /* see Autoconf: |
||
| 21 | * headers.m4, _AC_INCLUDES_DEFAULT_REQUIREMENTS ac_includes_default |
||
| 22 | */ |
||
| 23 | |||
| 24 | #include <stdio.h> |
||
| 25 | #if defined(HAVE_TIME_H) && defined(__MSL__) && defined(__cplusplus) |
||
| 26 | # include <time.h> |
||
| 27 | #endif |
||
| 28 | #if HAVE_SYS_TYPES_H |
||
| 29 | # include <sys/types.h> |
||
| 30 | #endif |
||
| 31 | #if HAVE_SYS_STAT_H |
||
| 32 | # include <sys/stat.h> |
||
| 33 | #endif |
||
| 34 | #if STDC_HEADERS |
||
| 35 | # include <stdlib.h> |
||
| 36 | # include <stddef.h> |
||
| 37 | #else |
||
| 38 | # if HAVE_STDLIB_H |
||
| 39 | # include <stdlib.h> |
||
| 40 | # endif |
||
| 41 | #endif |
||
| 42 | #if HAVE_STRING_H |
||
| 43 | # if !STDC_HEADERS && HAVE_MEMORY_H |
||
| 44 | # include <memory.h> |
||
| 45 | # endif |
||
| 46 | # include <string.h> |
||
| 47 | #endif |
||
| 48 | #if HAVE_STRINGS_H |
||
| 49 | # include <strings.h> |
||
| 50 | #endif |
||
| 51 | #if HAVE_INTTYPES_H |
||
| 52 | # include <inttypes.h> |
||
| 53 | #else |
||
| 54 | # if HAVE_STDINT_H |
||
| 55 | # include <stdint.h> |
||
| 56 | # endif |
||
| 57 | #endif |
||
| 58 | #if HAVE_UNISTD_H |
||
| 59 | # include <unistd.h> |
||
| 60 | #endif |
||
| 61 | |||
| 62 | #endif /* already included */ |
||
| 63 | |||
| 64 | |||
| 65 | /* |
||
| 66 | vi:ts=4:et |
||
| 67 | */ |