summaryrefslogtreecommitdiff
path: root/pp.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-10-29 15:24:13 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-10-29 15:24:13 +0000
commitd7d93a8159c0ca10065c583e76157a51736a62cd (patch)
treef3a39f4d05385b4024b9735f2f8326d9b408756b /pp.h
parentf868067f71962292cefa95e71c0bed29258aec96 (diff)
downloadperl-d7d93a8159c0ca10065c583e76157a51736a62cd.tar.gz
Remove quad logic from perl.h; regen Configure;
add -DUSE_LONG_LONG to ccflags if not already there. p4raw-id: //depot/cfgperl@4487
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 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