diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-11-16 21:17:25 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-11-16 21:17:25 +0000 |
commit | 831977bea08961a41077430f201e38ada10f0c68 (patch) | |
tree | 7f115316ebe50290bbd8bfe8c8917c5b72e8db16 /pp.h | |
parent | 2e87f53342e3c5c0b1e487e8deaba1d54b74e326 (diff) | |
download | perl-831977bea08961a41077430f201e38ada10f0c68.tar.gz |
Regen Configure.
p4raw-id: //depot/cfgperl@4592
Diffstat (limited to 'pp.h')
-rw-r--r-- | pp.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -65,7 +65,7 @@ #define POPu ((UV)SvUVx(POPs)) #define POPl ((long)SvIVx(POPs)) #define POPul ((unsigned long)SvIVx(POPs)) -#ifdef Quad_t +#ifdef HAS_QUAD #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 Quad_t +#ifdef HAS_QUAD #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 Quad_t +#ifdef HAS_QUAD #define dTOPqv Quad_t value = TOPu #define dPOPqv Quad_t value = POPu #define dTOPuqv Uquad_t value = TOPuq |