Update of /cvsroot/blob/blob/include/blob
In directory usw-pr-cvs1:/tmp/cvs-serv11799/include/blob
Modified Files:
types.h
Log Message:
Change types of s32 and u32 from long to int. Size is the same on ARM, but
it is less type cast hassle with printf() and friends.
Index: types.h
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/types.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- types.h 6 Jan 2002 18:57:32 -0000 1.3
+++ types.h 13 Feb 2002 00:02:30 -0000 1.4
@@ -34,11 +34,11 @@
#ifndef BLOB_TYPES_H
#define BLOB_TYPES_H
-typedef signed long s32;
+typedef signed int s32;
typedef signed short s16;
typedef signed char s8;
-typedef unsigned long u32;
+typedef unsigned int u32;
typedef unsigned short u16;
typedef unsigned char u8;
|