diff options
-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 9d5e085..fc312e6 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 2e0ce49..01270ead 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 */ |