You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2014/02/28 22:19:18 UTC

svn commit: r1573084 - /subversion/trunk/subversion/libsvn_subr/utf8proc/utf8proc.h

Author: philip
Date: Fri Feb 28 21:19:18 2014
New Revision: 1573084

URL: http://svn.apache.org/r1573084
Log:
* subversion/libsvn_subr/utf8proc/utf8proc.h: Don't redefine APR
    types, add missing constants.

Modified:
    subversion/trunk/subversion/libsvn_subr/utf8proc/utf8proc.h

Modified: subversion/trunk/subversion/libsvn_subr/utf8proc/utf8proc.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/utf8proc/utf8proc.h?rev=1573084&r1=1573083&r2=1573084&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/utf8proc/utf8proc.h (original)
+++ subversion/trunk/subversion/libsvn_subr/utf8proc/utf8proc.h Fri Feb 28 21:19:18 2014
@@ -88,11 +88,8 @@ enum {false, true};
 #include <inttypes.h>
 #else
 #include <apr.h>
-typedef signed char int8_t;
-typedef unsigned char uint8_t;
-typedef apr_int16_t int16_t;
-typedef apr_uint16_t uint16_t;
-typedef apr_int32_t int32_t;
+typedef uint8_t bool;
+enum {false, true};
 #endif
 #include <limits.h>