* words.h (signed32): Define as "int".

(unsigned32): Define as "unsigned int".
This commit is contained in:
Mark Mitchell 2006-01-24 23:48:01 +00:00
parent 065cc494d9
commit 0b06d9f4d3
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-01-23 Mark Mitchell <mark@codesourcery.com>
* words.h (signed32): Define as "int".
(unsigned32): Define as "unsigned int".
2005-11-28 Mark Mitchell <mark@codesourcery.com>
* configure.ac (USE_WIN32API): Define it.

View File

@ -55,11 +55,11 @@ typedef long 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;