diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-12-01 04:01:57 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-12-01 04:01:57 +0000 |
commit | 31fb120917c4f65d2069bd7d23b1876b523066fe (patch) | |
tree | ed319969aa1ff19d40a9be89a87a5129336cf174 /util.c | |
parent | 22239a37ce131e4f5341aee571f08aced283e16a (diff) | |
download | perl-31fb120917c4f65d2069bd7d23b1876b523066fe.tar.gz |
Builds and passes all tests with gcc on Win32 - phew!
p4raw-id: //depot/ansiperl@342
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -2553,4 +2553,16 @@ Perl_GetVars(void) { return &Perl_Vars; } -#endif
\ No newline at end of file +#endif + +char ** +get_op_names(void) +{ + return op_name; +} + +char ** +get_op_descs(void) +{ + return op_desc; +} |