summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-11-26 18:54:13 +0000
committerNicholas Clark <nick@ccl4.org>2008-11-26 18:54:13 +0000
commite3cf49e2e2df78528afdd14c4a3219cf5059e6eb (patch)
tree7b2e596d469563427ab0b39305d402c3d7e020af /proto.h
parent11cd919dc47cef55287cce0322d44e19aecf3127 (diff)
downloadperl-e3cf49e2e2df78528afdd14c4a3219cf5059e6eb.tar.gz
vdie() isn't used anywhere aside from util.c, so it can be static.
p4raw-id: //depot/perl@34923
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index b6c0e57241..8d25afb7e5 100644
--- a/proto.h
+++ b/proto.h
@@ -538,7 +538,7 @@ PERL_CALLCONV void Perl_deprecate_old(pTHX_ const char *const s)
PERL_CALLCONV OP* Perl_die(pTHX_ const char* pat, ...)
__attribute__format__null_ok__(__printf__,pTHX_1,pTHX_2);
-PERL_CALLCONV OP* Perl_vdie(pTHX_ const char* pat, va_list* args);
+STATIC OP* S_vdie(pTHX_ const char* pat, va_list* args);
PERL_CALLCONV OP* Perl_die_where(pTHX_ const char* message, STRLEN msglen);
PERL_CALLCONV void Perl_dounwind(pTHX_ I32 cxix);
/* PERL_CALLCONV bool Perl_do_aexec(pTHX_ SV* really, SV** mark, SV** sp)