summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>1997-12-01 04:01:57 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>1997-12-01 04:01:57 +0000
commit31fb120917c4f65d2069bd7d23b1876b523066fe (patch)
treeed319969aa1ff19d40a9be89a87a5129336cf174 /util.c
parent22239a37ce131e4f5341aee571f08aced283e16a (diff)
downloadperl-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.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/util.c b/util.c
index 81035b9d4a..cb7a4f1424 100644
--- a/util.c
+++ b/util.c
@@ -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;
+}