* bucomm.h: Include <stdarg.h> unconditionally, not only when
authorBen Elliston <bje@au.ibm.com>
Fri, 8 Jul 2005 05:32:46 +0000 (05:32 +0000)
committerBen Elliston <bje@au.ibm.com>
Fri, 8 Jul 2005 05:32:46 +0000 (05:32 +0000)
ANSI_PROTOTYPES is defined.  Remove #ifdef logic.
* dlltool.c: Likewise.
* dllwrap.c: Likewise.

binutils/ChangeLog
binutils/bucomm.h
binutils/dlltool.c
binutils/dllwrap.c

index 3933ec8..6b87242 100644 (file)
@@ -1,3 +1,10 @@
+2005-07-08  Ben Elliston  <bje@au.ibm.com>
+
+       * bucomm.h: Include <stdarg.h> unconditionally, not only when
+       ANSI_PROTOTYPES is defined.  Remove #ifdef logic.
+       * dlltool.c: Likewise.
+       * dllwrap.c: Likewise.
+
 2005-07-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * bucomm.h (report): Add format attribute.
index f889f92..09dce10 100644 (file)
 #include "config.h"
 #include "bin-bugs.h"
 
-#ifdef ANSI_PROTOTYPES
 #include <stdarg.h>
-#else
-#include <varargs.h>
-#endif
 
 #ifdef USE_BINARY_FOPEN
 #include "fopen-bin.h"
index 3f18922..eda8e3c 100644 (file)
 
 #include <time.h>
 #include <sys/stat.h>
-
-#ifdef ANSI_PROTOTYPES
 #include <stdarg.h>
-#else
-#include <varargs.h>
-#endif
-
 #include <assert.h>
 
 #ifdef DLLTOOL_ARM
index 97b138a..a3b3794 100644 (file)
 
 #include <time.h>
 #include <sys/stat.h>
-
-#ifdef ANSI_PROTOTYPES
 #include <stdarg.h>
-#else
-#include <varargs.h>
-#endif
 
 #ifdef HAVE_SYS_WAIT_H
 #include <sys/wait.h>