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 | |||
| 17 | #if !defined(ACC_VERSION) | ||
| 18 | # if defined ACC_CONFIG_INCLUDE | ||
| 19 | #    include ACC_CONFIG_INCLUDE("acc.h") | ||
| 20 | # else | ||
| 21 | # include "acc.h" | ||
| 22 | # endif | ||
| 23 | #endif | ||
| 24 | #ifndef __ACC_INCD_H_INCLUDED | ||
| 25 | #  include ACC_CONFIG_INCLUDE("acc_incd.h") | ||
| 26 | #endif | ||
| 27 | #ifndef __ACC_INCE_H_INCLUDED | ||
| 28 | #  include ACC_CONFIG_INCLUDE("acc_ince.h") | ||
| 29 | #endif | ||
| 30 | #ifndef __ACC_INCI_H_INCLUDED | ||
| 31 | #  include ACC_CONFIG_INCLUDE("acc_inci.h") | ||
| 32 | #endif | ||
| 33 | #ifndef __ACC_LIB_H_INCLUDED | ||
| 34 | #  include ACC_CONFIG_INCLUDE("acc_lib.h") | ||
| 35 | #endif | ||
| 36 | |||
| 37 | |||
| 38 | #if !defined(ACCLIB_PUBLIC) | ||
| 39 | # define ACCLIB_PUBLIC(r,f) r __ACCLIB_FUNCNAME(f) | ||
| 40 | #endif | ||
| 41 | |||
| 42 | #include ACC_CONFIG_INCLUDE("acclib/bele.ch") | ||
| 43 | #include ACC_CONFIG_INCLUDE("acclib/hmemcpy.ch") | ||
| 44 | #include ACC_CONFIG_INCLUDE("acclib/hstring.ch") | ||
| 45 | #include ACC_CONFIG_INCLUDE("acclib/halloc.ch") | ||
| 46 | #include ACC_CONFIG_INCLUDE("acclib/dosalloc.ch") | ||
| 47 | #include ACC_CONFIG_INCLUDE("acclib/hfread.ch") | ||
| 48 | #include ACC_CONFIG_INCLUDE("acclib/hread.ch") | ||
| 49 | #include ACC_CONFIG_INCLUDE("acclib/opendir.ch") | ||
| 50 | #include ACC_CONFIG_INCLUDE("acclib/rand.ch") | ||
| 51 | #include ACC_CONFIG_INCLUDE("acclib/misc.ch") | ||
| 52 | |||
| 53 | #if 0 | ||
| 54 | /* modules which use floating point are not included by default */ | ||
| 55 | #include ACC_CONFIG_INCLUDE("acclib/uclock.ch") | ||
| 56 | #endif | ||
| 57 | |||
| 58 | |||
| 59 | /* | ||
| 60 | vi:ts=4:et | ||
| 61 | */ |