]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - sim/ppc/words.h
* elfxx-tilegx.c (tilegx_elf_relocate_section): Silence bogus warning.
[thirdparty/binutils-gdb.git] / sim / ppc / words.h
index 1c18df42ebfbc405db10a89a347e7f25ef36edc1..a3de1aa622026dcb98b7adf1099d1dd1feec8424 100644 (file)
 */
 
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 /* bit based */
 typedef char natural8;
 typedef short natural16;
-typedef long natural32;
+typedef int natural32;
 
 typedef signed char signed8;
 typedef signed short signed16;
-typedef signed long signed32;
+typedef signed int signed32;
 
 typedef unsigned char unsigned8;
 typedef unsigned short unsigned16;
-typedef unsigned long unsigned32;
+typedef unsigned int unsigned32;
 
 #ifdef __GNUC__
 typedef long long natural64;