summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-06-07 19:30:35 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-06-07 19:30:35 +0000
commit5f1478c393a03bf1defcb0d2dec70e6a17a8c864 (patch)
tree3f03b8889d571c5aeeee26efb612464e8ddb4f42 /sv.h
parente62f0680cdecd36f79df8a7dabc61c6a2739f07a (diff)
downloadperl-5f1478c393a03bf1defcb0d2dec70e6a17a8c864.tar.gz
The definition of SvPVx_nolen_const is missing for non GNU-C compilers
p4raw-id: //depot/perl@24741
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sv.h b/sv.h
index 99933120de..cf116b8d3e 100644
--- a/sv.h
+++ b/sv.h
@@ -1309,6 +1309,7 @@ Like C<sv_catsv> but doesn't process magic.
# define SvNVx(sv) ((PL_Sv = (sv)), SvNV(PL_Sv))
# define SvPVx(sv, lp) ((PL_Sv = (sv)), SvPV(PL_Sv, lp))
# define SvPVx_const(sv, lp) ((PL_Sv = (sv)), SvPV_const(PL_Sv, lp))
+# define SvPVx_nolen_const(sv) ((PL_Sv = (sv)), SvPV_nolen_const(PL_Sv))
# define SvPVutf8x(sv, lp) ((PL_Sv = (sv)), SvPVutf8(PL_Sv, lp))
# define SvPVbytex(sv, lp) ((PL_Sv = (sv)), SvPVbyte(PL_Sv, lp))
# define SvTRUE(sv) ( \