diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-13 12:01:56 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-13 12:01:56 +0000 |
commit | cae16f1a7abda22927271673793d2853dfb8f82f (patch) | |
tree | b11e0b0014721c30d8d423c96da6b517c7174463 /opcode.h | |
parent | 3d811634c8589ee2440a7c55255d05afcabf2fc7 (diff) | |
download | perl-cae16f1a7abda22927271673793d2853dfb8f82f.tar.gz |
Regen headers.
p4raw-id: //depot/perl@12009
Diffstat (limited to 'opcode.h')
-rw-r--r-- | opcode.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -11,15 +11,11 @@ START_EXTERN_C -#ifdef PERL_CUSTOM_OPS + #define OP_NAME(o) (o->op_type == OP_CUSTOM ? custom_op_name(o) : \ PL_op_name[o->op_type]) #define OP_DESC(o) (o->op_type == OP_CUSTOM ? custom_op_desc(o) : \ PL_op_desc[o->op_type]) -#else -#define OP_NAME(o) PL_op_name[o->op_type] -#define OP_DESC(o) PL_op_desc[o->op_type] -#endif #ifndef DOINIT EXT char *PL_op_name[]; |