diff options
Diffstat (limited to 'gcc/acconfig.h')
-rw-r--r-- | gcc/acconfig.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/acconfig.h b/gcc/acconfig.h new file mode 100644 index 0000000..690a213 --- /dev/null +++ b/gcc/acconfig.h @@ -0,0 +1,14 @@ + +/* Include the old config.h as config2.h to simplify the transition + to autoconf. */ +#include "config2.h" + +/* Whether malloc must be declared even if <stdlib.h> is included. */ +#undef NEED_DECLARATION_MALLOC + +/* Whether realloc must be declared even if <stdlib.h> is included. */ +#undef NEED_DECLARATION_REALLOC + +/* Whether free must be declared even if <stdlib.h> is included. */ +#undef NEED_DECLARATION_FREE +@TOP@ |