]>
Commit | Line | Data |
---|---|---|
bd2a2393 JT |
1 | #ifndef CONFIG_H |
2 | #define CONFIG_H | |
bd2a2393 JT |
3 | @TOP@ |
4 | ||
f9b730cd JT |
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 | |
bd2a2393 JT |
12 | @BOTTOM@ |
13 | ||
d2729d44 JT |
14 | #if defined(PROTOTYPES) || defined(__cplusplus) |
15 | # define PARAMS(p) p | |
16 | #else | |
17 | # define PARAMS(p) () | |
18 | #endif | |
19 | ||
bd2a2393 | 20 | #endif /* CONFIG_H */ |