diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-19 05:55:57 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-19 05:55:57 +0000 |
commit | 43cd9f80c6e9c5cacf082215013c2fd33f686bc9 (patch) | |
tree | bc9782ab3e209fb7218c6911e577e444511eb670 /sv.h | |
parent | e8e6f333fb70a1ac62ee87237d37336cd6767150 (diff) | |
download | perl-43cd9f80c6e9c5cacf082215013c2fd33f686bc9.tar.gz |
win32 nits
p4raw-id: //depot/perl@3703
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |