* budemang.c: Include config.h and string.h/strings.h.

This commit is contained in:
Alan Modra 2002-07-23 05:12:26 +00:00
parent fad2542d0f
commit 63eb080933
2 changed files with 8 additions and 1 deletions

View 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>

View file

@ -18,8 +18,15 @@
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"