diff options
author | Jonathan Biggar <jon@sems.com> | 1996-09-16 16:37:48 -0700 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-09-16 16:37:48 -0700 |
commit | c6ecf61fd8db79f1fc1b90463b6c61a4267ab923 (patch) | |
tree | 3a65fe37537db241987c84a5b58ed4bcefe7dc2d /opcode.pl | |
parent | 69969c6f8dad38fedd2ed2c653a7948030e5ecf8 (diff) | |
download | perl-c6ecf61fd8db79f1fc1b90463b6c61a4267ab923.tar.gz |
Perl 5.003 bug when embedding in C++ program
The following patch is necessary in order to embed the Perl5.003 interpreter
into a C++ program without getting prototype mismatch errors from the
C++ compiler.
Diffstat (limited to 'opcode.pl')
-rwxr-xr-x | opcode.pl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -114,9 +114,9 @@ END print <<END; #ifndef DOINIT -EXT OP * (*check[])(); +EXT OP * (*check[]) _((OP *op)); #else -EXT OP * (*check[])() = { +EXT OP * (*check[]) _((OP *op)) = { END for (@ops) { |