diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-03-29 12:39:39 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-03-29 12:39:39 +0000 |
commit | 1cb0ed9b77e4ba2e0bcbeb9a897574a0fe3f3e52 (patch) | |
tree | a69b14ce28e454242ff7fe099eaaa1ce0266bbd2 /opcode.h | |
parent | 06b5626a89944244c0525ddbf02b7279497dc8e6 (diff) | |
download | perl-1cb0ed9b77e4ba2e0bcbeb9a897574a0fe3f3e52.tar.gz |
Downconst external APIs
p4raw-id: //depot/perl@24095
Diffstat (limited to 'opcode.h')
-rw-r--r-- | opcode.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -27,9 +27,9 @@ START_EXTERN_C PL_op_desc[(o)->op_type]) #ifndef DOINIT -EXT const char *PL_op_name[]; +EXT char *PL_op_name[]; #else -EXT const char *PL_op_name[] = { +EXT char *PL_op_name[] = { "null", "stub", "scalar", @@ -388,9 +388,9 @@ EXT const char *PL_op_name[] = { #endif #ifndef DOINIT -EXT const char *PL_op_desc[]; +EXT char *PL_op_desc[]; #else -EXT const char *PL_op_desc[] = { +EXT char *PL_op_desc[] = { "null operation", "stub", "scalar", |