From: DJ Delorie Date: Tue, 17 Apr 2001 23:28:38 +0000 (+0000) Subject: * dlltool.c (do_default_excludes): Initialise to true. X-Git-Tag: dberlin-typesystem-branchpoint~736 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4bd3d87018ec6771548d16429a13bef71c15b1dd;p=external%2Fbinutils.git * dlltool.c (do_default_excludes): Initialise to true. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 4073d0b..3a000b9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2001-04-17 Danny Smith + + * dlltool.c (do_default_excludes): Initialise to true. + 2001-04-10 Alan Modra * MAINTAINERS: Update my email address diff --git a/binutils/dlltool.c b/binutils/dlltool.c index a92688c..4295e0a 100644 --- a/binutils/dlltool.c +++ b/binutils/dlltool.c @@ -367,7 +367,7 @@ static boolean export_all_symbols; /* True if we should exclude the symbols in DEFAULT_EXCLUDES when exporting all symbols. */ -static boolean do_default_excludes; +static boolean do_default_excludes=true; /* Default symbols to exclude when exporting all the symbols. */ static const char *default_excludes = "DllMain@12,DllEntryPoint@0,impure_ptr";