diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-02 04:47:10 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-02 04:47:10 +0000 |
commit | 20ce7b12268a3d32b5b246928de5084322e709cf (patch) | |
tree | 395ce45dee07dabd92553cbcdad9b91e37e8ae49 /pp_ctl.c | |
parent | 0221c164222f9d91820826506118f46ffa08dd46 (diff) | |
download | perl-20ce7b12268a3d32b5b246928de5084322e709cf.tar.gz |
remove _() non-ansism
p4raw-id: //depot/perl@3518
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 46 |
1 files changed, 23 insertions, 23 deletions
@@ -29,27 +29,27 @@ #define CALLOP this->*PL_op #else #define CALLOP *PL_op -static void *docatch_body _((va_list args)); -static OP *docatch _((OP *o)); -static OP *dofindlabel _((OP *o, char *label, OP **opstack, OP **oplimit)); -static void doparseform _((SV *sv)); -static I32 dopoptoeval _((I32 startingblock)); -static I32 dopoptolabel _((char *label)); -static I32 dopoptoloop _((I32 startingblock)); -static I32 dopoptosub _((I32 startingblock)); -static I32 dopoptosub_at _((PERL_CONTEXT *cxstk, I32 startingblock)); -static void save_lines _((AV *array, SV *sv)); -static I32 sortcv _((SV *a, SV *b)); -static void qsortsv _((SV **array, size_t num_elts, I32 (*fun)(SV *a, SV *b))); -static OP *doeval _((int gimme, OP** startop)); -static PerlIO *doopen_pmc _((const char *name, const char *mode)); -static I32 sv_ncmp _((SV *a, SV *b)); -static I32 sv_i_ncmp _((SV *a, SV *b)); -static I32 amagic_ncmp _((SV *a, SV *b)); -static I32 amagic_i_ncmp _((SV *a, SV *b)); -static I32 amagic_cmp _((SV *str1, SV *str2)); -static I32 amagic_cmp_locale _((SV *str1, SV *str2)); -static void free_closures _((void)); +static void *docatch_body (va_list args); +static OP *docatch (OP *o); +static OP *dofindlabel (OP *o, char *label, OP **opstack, OP **oplimit); +static void doparseform (SV *sv); +static I32 dopoptoeval (I32 startingblock); +static I32 dopoptolabel (char *label); +static I32 dopoptoloop (I32 startingblock); +static I32 dopoptosub (I32 startingblock); +static I32 dopoptosub_at (PERL_CONTEXT *cxstk, I32 startingblock); +static void save_lines (AV *array, SV *sv); +static I32 sortcv (SV *a, SV *b); +static void qsortsv (SV **array, size_t num_elts, I32 (*fun)(SV *a, SV *b)); +static OP *doeval (int gimme, OP** startop); +static PerlIO *doopen_pmc (const char *name, const char *mode); +static I32 sv_ncmp (SV *a, SV *b); +static I32 sv_i_ncmp (SV *a, SV *b); +static I32 amagic_ncmp (SV *a, SV *b); +static I32 amagic_i_ncmp (SV *a, SV *b); +static I32 amagic_cmp (SV *str1, SV *str2); +static I32 amagic_cmp_locale (SV *str1, SV *str2); +static void free_closures (void); #endif PP(pp_wantarray) @@ -2178,12 +2178,12 @@ PP(pp_goto) if (CvXSUB(cv)) { #ifdef PERL_XSUB_OLDSTYLE if (CvOLDSTYLE(cv)) { - I32 (*fp3)_((int,int,int)); + I32 (*fp3)(int,int,int); while (SP > mark) { SP[1] = SP[0]; SP--; } - fp3 = (I32(*)_((int,int,int)))CvXSUB(cv); + fp3 = (I32(*)(int,int,int)))CvXSUB(cv; items = (*fp3)(CvXSUBANY(cv).any_i32, mark - PL_stack_base + 1, items); |