Update of /cvsroot/blob/blob/include/blob
In directory usw-pr-cvs1:/tmp/cvs-serv26034/include/blob
Modified Files:
types.h
Log Message:
Fix mkparamblock.c: blob size_t clashes with libc size_t
Index: types.h
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/types.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- types.h 2002/01/06 17:04:36 1.2
+++ types.h 2002/01/06 18:57:32 1.3
@@ -42,7 +42,9 @@
typedef unsigned short u16;
typedef unsigned char u8;
+#ifndef USE_BLOB_TOGETHER_WITH_LIBC
typedef u32 size_t;
+#endif
/* number of nibbles in a word */
#define NIBBLES_PER_WORD (8)
|