* budemang.c: Include config.h and string.h/strings.h.
This commit is contained in:
parent
fad2542d0f
commit
63eb080933
2 changed files with 8 additions and 1 deletions
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue