From 69f1369c0c6f2eb91afe03eb40845ad5c1a3f083 Mon Sep 17 00:00:00 2001 From: qrczak Date: Wed, 28 Mar 2001 18:48:46 +0000 Subject: [PATCH] [project @ 2001-03-28 18:48:46 by qrczak] HS_CHAR_MAX is 0x10FFFF. --- ghc/includes/HsFFI.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/includes/HsFFI.h b/ghc/includes/HsFFI.h index 60f41d5..2b6f353 100644 --- a/ghc/includes/HsFFI.h +++ b/ghc/includes/HsFFI.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: HsFFI.h,v 1.13 2001/01/03 03:10:32 chak Exp $ + * $Id: HsFFI.h,v 1.14 2001/03/28 18:48:46 qrczak Exp $ * * (c) The GHC Team, 2000 * @@ -87,7 +87,7 @@ typedef void* HsForeignObj; /* DEPRECATED */ /* this should correspond to the type of StgChar in StgTypes.h */ #define HS_CHAR_MIN 0 -#define HS_CHAR_MAX __INT32_MAX +#define HS_CHAR_MAX 0x10FFFF /* this mirrors the distinction of cases in StgTypes.h */ #if SIZEOF_VOID_P == 8 -- 1.7.10.4