diff options
author | Roland McGrath <roland@gnu.org> | 1992-12-29 21:58:10 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1992-12-29 21:58:10 +0000 |
commit | 8f8efdcad8f2017615932b43caed3b3d72250418 (patch) | |
tree | 1556f5cafe1d4e4166ab12c1e67d2d5471354894 /src/ralloc.c | |
parent | d85d6a4c61b3904a379b10675afb0f9b12a41697 (diff) | |
download | emacs-8f8efdcad8f2017615932b43caed3b3d72250418.tar.gz |
[! emacs] [HAVE_CONFIG_H]: #include "config.h"
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; |