From 6b8eaf932222db04db65aff99717b9c1dbd0a692 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Thu, 11 Nov 1999 23:17:43 +0000 Subject: Turn on largefileness always if available and continue 64-bit fixes. p4raw-id: //depot/cfgperl@4552 --- utf8.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utf8.c') diff --git a/utf8.c b/utf8.c index a4703769de..b27774af7f 100644 --- a/utf8.c +++ b/utf8.c @@ -68,7 +68,7 @@ Perl_uv_to_utf8(pTHX_ U8 *d, UV uv) *d++ = (( uv & 0x3f) | 0x80); return d; } -#ifdef Quad_t +#ifdef HAS_QUAD if (uv < 0x2000000000) #endif { @@ -81,7 +81,7 @@ Perl_uv_to_utf8(pTHX_ U8 *d, UV uv) *d++ = (( uv & 0x3f) | 0x80); return d; } -#ifdef Quad_t +#ifdef HAS_QUAD { *d++ = 0xff; /* Can't match U+FFFE! */ *d++ = (((uv >> 36) & 0x3f) | 0x80); -- cgit v1.2.1