diff options
Diffstat (limited to 'opcode.pl')
-rwxr-xr-x | opcode.pl | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -207,6 +207,15 @@ print <<END; #endif END +close OC or die "Error closing opcode.h: $!"; + +open PP, '>pp_proto.h' or die "Error creating pp_proto.h: $!"; +for (@ops) { + print PP "PPDEF(pp_$_)\n"; +} + +close PP or die "Error closing pp_proto.h: $!"; + ########################################################################### sub tab { local($l, $t) = @_; |