diff options
Diffstat (limited to 'src/ralloc.c')
-rw-r--r-- | src/ralloc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ralloc.c b/src/ralloc.c index de6060cfd4f..47300ef1015 100644 --- a/src/ralloc.c +++ b/src/ralloc.c @@ -36,7 +36,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef __STDC__ typedef void *POINTER; #else + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + typedef char *POINTER; + #endif typedef unsigned long SIZE; |