PowerPC64 .branch_lt address
[binutils-gdb.git] / sim / common / hw-device.c
index 89e06a14524b85dc4037a186bc9ab3c7b0228697..77c163a9267531bc088b868bd6e2fc083e9e8812 100644 (file)
@@ -1,6 +1,6 @@
 /* The common simulator framework for GDB, the GNU Debugger.
 
-   Copyright 2002, 2007 Free Software Foundation, Inc.
+   Copyright 2002-2022 Free Software Foundation, Inc.
 
    Contributed by Andrew Cagney and Red Hat.
 
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
+/* This must come before any other includes.  */
+#include "defs.h"
+
+#include <stdarg.h>
+#include <stdlib.h>
+#include <string.h>
 
 #include "hw-main.h"
 #include "hw-base.h"
 
-#if HAVE_STDLIB_H
-#include <stdlib.h>
-#endif
-
 /* Address methods */
 
 const hw_unit *
@@ -45,12 +47,12 @@ hw_ioctl (struct hw *me,
 {
   int status;
   va_list ap;
-  va_start(ap, request);
+  va_start (ap, request);
   status = me->to_ioctl (me, request, ap);
-  va_end(ap);
+  va_end (ap);
   return status;
 }
-      
+
 char *
 hw_strdup (struct hw *me, const char *str)
 {