* budemang.c: Include config.h and string.h/strings.h.
authorAlan Modra <amodra@gmail.com>
Tue, 23 Jul 2002 05:12:26 +0000 (05:12 +0000)
committerAlan Modra <amodra@gmail.com>
Tue, 23 Jul 2002 05:12:26 +0000 (05:12 +0000)
binutils/ChangeLog
binutils/budemang.c

index 22deb6f..b81575b 100644 (file)
@@ -1,6 +1,6 @@
 2002-07-20  Alan Modra  <amodra@bigpond.net.au>
 
-       * budemang.c: Include string.h.
+       * budemang.c: Include config.h and string.h/strings.h.
 
 2002-07-18 Denis Chertykov  <denisc@overta.ru>
           Frank Ch. Eigler  <fche@redhat.com>
index f80e196..3f8d385 100644 (file)
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
    02111-1307, USA.  */
 
+#include "config.h"
 #include <stdlib.h>
+#ifdef HAVE_STRING_H
 #include <string.h>
+#else
+#ifdef HAVE_STRINGS_H
+#include <strings.h>
+#endif
+#endif
 #include "bfd.h"
 #include "libiberty.h"
 #include "demangle.h"