]>
Commit | Line | Data |
---|---|---|
1 | #ifndef CONFIG_H | |
2 | #define CONFIG_H | |
3 | @TOP@ | |
4 | ||
5 | /* Define as 1 if realloc must be declared even if <stdlib.h> is | |
6 | included. */ | |
7 | #undef NEED_DECLARATION_REALLOC | |
8 | ||
9 | /* Define as 1 if calloc must be declared even if <stdlib.h> is | |
10 | included. */ | |
11 | #undef NEED_DECLARATION_CALLOC | |
12 | @BOTTOM@ | |
13 | ||
14 | #if defined(PROTOTYPES) || defined(__cplusplus) | |
15 | # define PARAMS(p) p | |
16 | #else | |
17 | # define PARAMS(p) () | |
18 | #endif | |
19 | ||
20 | #endif /* CONFIG_H */ |