diff options
author | DJ Delorie <dj@redhat.com> | 2001-04-17 23:28:38 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2001-04-17 23:28:38 +0000 |
commit | 4bd3d87018ec6771548d16429a13bef71c15b1dd (patch) | |
tree | bd15658da5f75d626dafc21a3ed35593e91e740b /binutils/dlltool.c | |
parent | e89a47777f138d9d32b63a75d1691b693621f5e0 (diff) | |
download | gdb-4bd3d87018ec6771548d16429a13bef71c15b1dd.zip gdb-4bd3d87018ec6771548d16429a13bef71c15b1dd.tar.gz gdb-4bd3d87018ec6771548d16429a13bef71c15b1dd.tar.bz2 |
* dlltool.c (do_default_excludes): Initialise to true.
Diffstat (limited to 'binutils/dlltool.c')
-rw-r--r-- | binutils/dlltool.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"; |