From: Norton T. Allen Date: Fri, 6 Jul 2001 09:39:57 +0000 (-0400) Subject: QNX patch extended for NTO X-Git-Tag: accepted/trunk/20130322.191538~31009 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f067b87872dea57cc42e70fbf2574bf4f17ace75;p=platform%2Fupstream%2Fperl.git QNX patch extended for NTO Message-Id: <200107061339.JAA12582@bottesini.harvard.edu> p4raw-id: //depot/perl@11184 --- diff --git a/utf8.h b/utf8.h index baee5ae..e23cff2 100644 --- a/utf8.h +++ b/utf8.h @@ -159,6 +159,8 @@ END_EXTERN_C #define UNICODE_IS_BYTE_ORDER_MARK(c) ((c) == UNICODE_BYTER_ORDER_MARK) #define UNICODE_IS_ILLEGAL(c) ((c) == UNICODE_ILLEGAL) -#define UTF8_QUAD_MAX UINT64_C(0x1000000000) +#ifdef HAS_QUAD +# define UTF8_QUAD_MAX UINT64_C(0x1000000000) +#endif #define UTF8_IS_ASCII(c) UTF8_IS_INVARIANT(c)