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 /opcode.h | |
parent | 0221c164222f9d91820826506118f46ffa08dd46 (diff) | |
download | perl-20ce7b12268a3d32b5b246928de5084322e709cf.tar.gz |
remove _() non-ansism
p4raw-id: //depot/perl@3518
Diffstat (limited to 'opcode.h')
-rw-r--r-- | opcode.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1072,8 +1072,8 @@ START_EXTERN_C #undef PERL_CKDEF #undef PERL_PPDEF -#define PERL_CKDEF(s) OP *s _((OP *o)); -#define PERL_PPDEF(s) OP *s _((ARGSproto)); +#define PERL_CKDEF(s) OP *s (OP *o); +#define PERL_PPDEF(s) OP *s (ARGSproto); #include "pp_proto.h" @@ -1437,9 +1437,9 @@ EXT OP * (CPERLscope(*PL_ppaddr)[])(ARGSproto) = { #endif #ifndef DOINIT -EXT OP * (CPERLscope(*PL_check)[]) _((OP *op)); +EXT OP * (CPERLscope(*PL_check)[]) (OP *op); #else -EXT OP * (CPERLscope(*PL_check)[]) _((OP *op)) = { +EXT OP * (CPERLscope(*PL_check)[]) (OP *op) = { ck_null, /* null */ ck_null, /* stub */ ck_fun, /* scalar */ |