git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb7d8f9
)
derive U32/S32 from signed/unsigned instead of long (for 64 bit systems)
author
kramm
<kramm>
Sun, 21 Jan 2007 22:18:48 +0000
(22:18 +0000)
committer
kramm
<kramm>
Sun, 21 Jan 2007 22:18:48 +0000
(22:18 +0000)
lib/types.h
patch
|
blob
|
history
diff --git
a/lib/types.h
b/lib/types.h
index
ccc576d
..
239d37e
100644
(file)
--- a/
lib/types.h
+++ b/
lib/types.h
@@
-32,8
+32,8
@@
typedef unsigned long long U64;
typedef signed long long S64;
-typedef unsigned long U32;
-typedef signed long S32;
+typedef unsigned U32;
+typedef signed S32;
typedef unsigned short U16;
typedef signed short S16;
typedef unsigned char U8;