diff options
author | Mark Mitchell <mark@codesourcery.com> | 2006-01-25 17:29:44 +0000 |
---|---|---|
committer | Mark Mitchell <mark@codesourcery.com> | 2006-01-25 17:29:44 +0000 |
commit | e8a15d32f6e68d283ab5328c8a65bcb37214bc7e (patch) | |
tree | 441e0628ba943ede415e0a95c35b72e624532811 /sim/ppc/words.h | |
parent | bbc8ddee97cb30641f567b70b1b12e8906797876 (diff) | |
download | gdb-e8a15d32f6e68d283ab5328c8a65bcb37214bc7e.zip gdb-e8a15d32f6e68d283ab5328c8a65bcb37214bc7e.tar.gz gdb-e8a15d32f6e68d283ab5328c8a65bcb37214bc7e.tar.bz2 |
* words.h (natural32): Define as "int".
Diffstat (limited to 'sim/ppc/words.h')
-rw-r--r-- | sim/ppc/words.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/ppc/words.h b/sim/ppc/words.h index 269fd4e..a3de1aa 100644 --- a/sim/ppc/words.h +++ b/sim/ppc/words.h @@ -51,7 +51,7 @@ /* bit based */ typedef char natural8; typedef short natural16; -typedef long natural32; +typedef int natural32; typedef signed char signed8; typedef signed short signed16; |