summaryrefslogtreecommitdiff
path: root/ext/tkutil/tkutil.c
diff options
context:
space:
mode:
author(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-12-16 07:30:36 +0000
committer(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-12-16 07:30:36 +0000
commit4a62be7d3ea2e8c56de875b97de274b20dbc3b1a (patch)
treeaf3097f92cad69ea9a404267e914c206598fc800 /ext/tkutil/tkutil.c
parente299d511db939232c628d6880e61c32e83937d66 (diff)
This commit was manufactured by cvs2svn to create tag 'v1_1d0'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_1d0@355 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tkutil/tkutil.c')
-rw-r--r--ext/tkutil/tkutil.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/ext/tkutil/tkutil.c b/ext/tkutil/tkutil.c
deleted file mode 100644
index 46f3b0f4e5..0000000000
--- a/ext/tkutil/tkutil.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/************************************************
-
- tk.c -
-
- $Author$
- $Date$
- created at: Fri Nov 3 00:47:54 JST 1995
-
-************************************************/
-
-#include "ruby.h"
-
-static VALUE
-tk_eval_cmd(argc, argv)
- int argc;
- VALUE argv[];
-{
- VALUE cmd, rest;
-
- rb_scan_args(argc, argv, "1*", &cmd, &rest);
- return rb_eval_cmd(cmd, rest);
-}
-
-static VALUE
-Init_tkutil()
-{
- VALUE mTK = rb_define_module("TkUtil");
- rb_define_singleton_method(mTK, "eval_cmd", tk_eval_cmd, -1);
-}