summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-18 04:56:27 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-18 04:56:27 +0000
commit32dc42cf1a248821df7594047bd3fd7822622b32 (patch)
treeb44992897e705edbaec22a2c5e4aee402c5d5177 /eval.c
parentec6b316cf26eae7eb36e3f9bce24110319e33e35 (diff)
*** empty log message ***
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@215 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/eval.c b/eval.c
index 75cbb24cc1..84176dde61 100644
--- a/eval.c
+++ b/eval.c
@@ -4152,8 +4152,8 @@ rb_provided(feature)
}
#ifdef THREAD
-static int thread_loading();
-static void thread_loading_done();
+static int thread_loading _((char*));
+static void thread_loading_done _((void));
#endif
void
@@ -5407,11 +5407,6 @@ thread_check(data)
return (thread_t)RDATA(data)->data;
}
-VALUE lastline_get();
-void lastline_set();
-VALUE backref_get();
-void backref_set();
-
static void
thread_save_context(th)
thread_t th;
@@ -5447,7 +5442,7 @@ thread_save_context(th)
th->line = sourceline;
}
-static void thread_restore_context();
+static void thread_restore_context _((thread_t,int));
static void
stack_extend(th, exit)
@@ -5811,7 +5806,7 @@ thread_wait_for(time)
thread_schedule();
}
-void thread_sleep_forever();
+void thread_sleep_forever _((void));
int
thread_alone()