diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-07-19 02:37:36 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-07-19 02:37:36 +0000 |
commit | a8e7eda330a3b58faf1454575d4c40c43ac96d7e (patch) | |
tree | d83876238768d45bde3aca18b67b9f4b464feb4b /gcc/acconfig.h | |
parent | a4ac01416e461c92e63a420cc10594d9757dc104 (diff) | |
download | gcc-a8e7eda330a3b58faf1454575d4c40c43ac96d7e.tar.gz |
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14486 138bc75d-0d04-0410-961f-82ee72b054a4
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 00000000000..690a21301a6 --- /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@ |