From d7d93a8159c0ca10065c583e76157a51736a62cd Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Fri, 29 Oct 1999 15:24:13 +0000 Subject: Remove quad logic from perl.h; regen Configure; add -DUSE_LONG_LONG to ccflags if not already there. p4raw-id: //depot/cfgperl@4487 --- pp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pp.h') diff --git a/pp.h b/pp.h index ec701f3054..2ff6f5e04e 100644 --- a/pp.h +++ b/pp.h @@ -65,7 +65,7 @@ #define POPu ((UV)SvUVx(POPs)) #define POPl ((long)SvIVx(POPs)) #define POPul ((unsigned long)SvIVx(POPs)) -#ifdef HAS_QUAD +#ifdef Quad_t #define POPq ((Quad_t)SvIVx(POPs)) #define POPuq ((Uquad_t)SvUVx(POPs)) #endif @@ -78,7 +78,7 @@ #define TOPu ((UV)SvUV(TOPs)) #define TOPl ((long)SvIV(TOPs)) #define TOPul ((unsigned long)SvUV(TOPs)) -#ifdef HAS_QUAD +#ifdef Quad_t #define TOPq ((Quad_t)SvIV(TOPs)) #define TOPuq ((Uquad_t)SvUV(TOPs)) #endif @@ -125,7 +125,7 @@ #define dPOPiv IV value = POPi #define dTOPuv UV value = TOPu #define dPOPuv UV value = POPu -#ifdef HAS_QUAD +#ifdef Quad_t #define dTOPqv Quad_t value = TOPu #define dPOPqv Quad_t value = POPu #define dTOPuqv Uquad_t value = TOPuq -- cgit v1.2.1