From: DJ Delorie Date: Tue, 14 Sep 2004 01:16:22 +0000 (+0000) Subject: merge from gcc X-Git-Tag: csl-arm-2004-q3~168 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=79fadcb076b30e154a8e6981c9cae4b2bdd6e952;p=platform%2Fupstream%2Fbinutils.git merge from gcc --- diff --git a/include/ChangeLog b/include/ChangeLog index d60b634..fa03f7c 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2004-09-13 Aaron W. LaFramboise + + * libiberty.h (basename): Prototype for __MINGW32__. + 2004-09-13 Paul Brook * elf/arm.h: Rename RELABS to TARGET1. diff --git a/include/libiberty.h b/include/libiberty.h index 4aab80b..c9f480a 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -74,7 +74,7 @@ extern char **dupargv PARAMS ((char **)) ATTRIBUTE_MALLOC; to find the declaration so provide a fully prototyped one. If it is 1, we found it so don't provide any declaration at all. */ #if !HAVE_DECL_BASENAME -#if defined (__GNU_LIBRARY__ ) || defined (__linux__) || defined (__FreeBSD__) || defined (__OpenBSD__) || defined(__NetBSD__) || defined (__CYGWIN__) || defined (__CYGWIN32__) || defined (HAVE_DECL_BASENAME) +#if defined (__GNU_LIBRARY__ ) || defined (__linux__) || defined (__FreeBSD__) || defined (__OpenBSD__) || defined(__NetBSD__) || defined (__CYGWIN__) || defined (__CYGWIN32__) || defined (__MINGW32__) || defined (HAVE_DECL_BASENAME) extern char *basename PARAMS ((const char *)); #else extern char *basename ();