summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>1998-05-14 18:09:01 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>1998-05-14 18:09:01 +0000
commit34e9701933920a1b91b5f5717935652f86850872 (patch)
tree71af4c85e03dd559ba81b969efa4ea5ac1ede141 /sv.c
parent0559d6709bef71ddf2b29eb9894aa0c5747eb3ef (diff)
downloadperl-34e9701933920a1b91b5f5717935652f86850872.tar.gz
Changes to allow compiler with gcc-2.8.1 in C++ mode,
Remove K&R style functions, avoid struct/typedef clash. p4raw-id: //depot/ansiperl@972
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sv.c b/sv.c
index ff9986771e..193734e674 100644
--- a/sv.c
+++ b/sv.c
@@ -3558,9 +3558,7 @@ newSVpv(char *s, STRLEN len)
}
SV *
-newSVpvn(s,len)
-char *s;
-STRLEN len;
+newSVpvn(char *s, STRLEN len)
{
register SV *sv;