diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-11-26 16:24:07 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-11-26 16:24:07 +0000 |
commit | 412da0037cc4cde2474dfefc6fdc5bdf091f2e24 (patch) | |
tree | def32a8a3524bba385d303252a8a2fb473a514c1 /proto.h | |
parent | 2dd5337ba7701c25f6807a12b77238cc673d5b07 (diff) | |
download | perl-412da0037cc4cde2474dfefc6fdc5bdf091f2e24.tar.gz |
listkids() can be static in op.c
p4raw-id: //depot/perl@34920
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1452,9 +1452,9 @@ STATIC OP* S_linklist(pTHX_ OP *o) #define PERL_ARGS_ASSERT_LINKLIST \ assert(o) +STATIC OP* S_listkids(pTHX_ OP* o); #endif PERL_CALLCONV OP* Perl_list(pTHX_ OP* o); -PERL_CALLCONV OP* Perl_listkids(pTHX_ OP* o); PERL_CALLCONV void Perl_load_module(pTHX_ U32 flags, SV* name, SV* ver, ...) __attribute__nonnull__(pTHX_2); #define PERL_ARGS_ASSERT_LOAD_MODULE \ |