From: Jarkko Hietaniemi Date: Sun, 28 Oct 2001 03:32:32 +0000 (+0000) Subject: Explicitly expect only 4 or 8 bytes of PTRSIZE. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d52413bedb04151817ef65ddea35db5f6e936b6f;p=p5sagit%2Fp5-mst-13.2.git Explicitly expect only 4 or 8 bytes of PTRSIZE. No final #else #error because we do not seem to be using #error? p4raw-id: //depot/perl@12723 --- diff --git a/op.h b/op.h index 6a4d0db..415514d 100644 --- a/op.h +++ b/op.h @@ -23,10 +23,12 @@ * which may or may not check number of children). */ -#if PTRSIZE == 8 -typedef U64TYPE PADOFFSET; -#else +#if PTRSIZE == 4 typedef U32TYPE PADOFFSET; +#else +# if PTRSIZE == 8 +typedef U64TYPE PADOFFSET; +# endif #endif #define NOT_IN_PAD ((PADOFFSET) -1)