summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-07-19 05:55:57 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-07-19 05:55:57 +0000
commit43cd9f80c6e9c5cacf082215013c2fd33f686bc9 (patch)
treebc9782ab3e209fb7218c6911e577e444511eb670 /sv.h
parente8e6f333fb70a1ac62ee87237d37336cd6767150 (diff)
downloadperl-43cd9f80c6e9c5cacf082215013c2fd33f686bc9.tar.gz
win32 nits
p4raw-id: //depot/perl@3703
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.h b/sv.h
index 5787da383a..4ba33edee2 100644
--- a/sv.h
+++ b/sv.h
@@ -692,7 +692,7 @@ struct xpvio {
#define isGV(sv) (SvTYPE(sv) == SVt_PVGV)
-#ifndef DOSISH
+#if !defined(DOSISH) || defined(WIN32)
# define SvGROW(sv,len) (SvLEN(sv) < (len) ? sv_grow(sv,len) : SvPVX(sv))
# define Sv_Grow sv_grow
#else