summaryrefslogtreecommitdiff
path: root/pp.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-11-16 21:17:25 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-11-16 21:17:25 +0000
commit1b8cd6788212ac406df639a1eccafd46a7113116 (patch)
tree7f115316ebe50290bbd8bfe8c8917c5b72e8db16 /pp.h
parent5e9b74b4c0c478d53e41a5a37dcf1f8038da6291 (diff)
downloadperl-1b8cd6788212ac406df639a1eccafd46a7113116.tar.gz
Regen Configure.
p4raw-id: //depot/cfgperl@4592
Diffstat (limited to 'pp.h')
-rw-r--r--pp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/pp.h b/pp.h
index 2ff6f5e04e..ec701f3054 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 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