summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.berkeley.edu>1999-07-31 00:45:12 -0400
committerGurusamy Sarathy <gsar@cpan.org>1999-08-01 20:59:59 +0000
commit3cfae81b38bc8edd77142113464ee12c2a2e5af0 (patch)
tree06dfba65718e52a2f5b475c60077ce21639209e6 /sv.h
parent6dce6b70b85ef184fc8b4432d2436d1be5f0b117 (diff)
downloadperl-3cfae81b38bc8edd77142113464ee12c2a2e5af0.tar.gz
slightly modified version of suggested patch
Message-Id: <199907311406.IAA25034@localhost.frii.com> Subject: [PATCH 5.005_58] Fix OS/2 build p4raw-id: //depot/perl@3856
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 4ba33edee2..476c9418dc 100644
--- a/sv.h
+++ b/sv.h
@@ -692,7 +692,7 @@ struct xpvio {
#define isGV(sv) (SvTYPE(sv) == SVt_PVGV)
-#if !defined(DOSISH) || defined(WIN32)
+#if !defined(DOSISH) || defined(WIN32) || defined(OS2)
# define SvGROW(sv,len) (SvLEN(sv) < (len) ? sv_grow(sv,len) : SvPVX(sv))
# define Sv_Grow sv_grow
#else