jfclere 01/05/22 00:42:29
Modified: lib iconv.h
Log:
Remove the unlucky: typedef apr_uint16_t uint16_t;
Revision Changes Path
1.7 +2 -3 apr-iconv/lib/iconv.h
Index: iconv.h
===================================================================
RCS file: /home/cvs/apr-iconv/lib/iconv.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- iconv.h 2001/05/17 10:29:08 1.6
+++ iconv.h 2001/05/22 07:42:27 1.7
@@ -150,18 +150,17 @@
typedef apr_uint16_t ucs2_t; /* Unicode character [D5] */
typedef apr_uint32_t ucs4_t; /* Unicode scalar character [D28] */
-typedef apr_uint16_t uint16_t;
#define ucs_t ucs4_t
/*
* one-level coded character set conversion tables
*/
typedef struct {
- uint16_t data[128];
+ apr_uint16_t data[128];
} iconv_ccs_convtable_7bit; /* 7-bit charset to Unicode */
typedef struct {
- uint16_t data[256];
+ apr_uint16_t data[256];
} iconv_ccs_convtable_8bit; /* 8-bit charset to Unicode */
/*