diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-30 19:23:38 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-30 19:23:38 +0000 |
commit | 6c9ffcbca2f5ac254ccecb12cbe1d260e8daa227 (patch) | |
tree | a6c073382739934c8c93fd5e6cbc6d4cd7e1ac9d /libiberty | |
parent | 73b8ea0646a3d50588cec52443b22cedaeaf80ca (diff) | |
download | gcc-6c9ffcbca2f5ac254ccecb12cbe1d260e8daa227.tar.gz |
* concat.c: Include "config.h".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44481 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/concat.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 9d5e0858821..fc312e664d8 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,5 +1,9 @@ 2001-07-30 Andreas Jaeger <aj@suse.de> + * concat.c: Include "config.h". + +2001-07-30 Andreas Jaeger <aj@suse.de> + * regex.c: Declare wcs functions only if compiling with MBS_SUPPORT. Don't use #elif for traditional C. diff --git a/libiberty/concat.c b/libiberty/concat.c index 2e0ce4996e7..01270eadcf2 100644 --- a/libiberty/concat.c +++ b/libiberty/concat.c @@ -53,6 +53,9 @@ NOTES */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include "ansidecl.h" #include "libiberty.h" #include <sys/types.h> /* size_t */ |