asan: score: global-buffer-overflow
[deliverable/binutils-gdb.git] / sim / ppc / words.h
index 1c18df42ebfbc405db10a89a347e7f25ef36edc1..7645349ac5b4e62c863ff3b808f7647bfed53713 100644 (file)
@@ -4,7 +4,7 @@
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public License
-   as published by the Free Software Foundation; either version 2 of
+   as published by the Free Software Foundation; either version 3 of
    the License, or (at your option) any later version.
  
    This library is distributed in the hope that it will be useful, but
@@ -13,8 +13,7 @@
    Library General Public License for more details.
  
    You should have received a copy of the GNU Library General Public
-   License along with this library; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+   License along with this library; if not, see <http://www.gnu.org/licenses/>.
  
    --
 
 */
 
 
+#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;
This page took 0.025965 seconds and 4 git commands to generate.