summaryrefslogtreecommitdiff
path: root/intern.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-06-26 09:45:09 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-06-26 09:45:09 +0000
commit05da25f297c4d26b6bb454a9649b1dd63a102910 (patch)
tree568d1118ca9c2c7bfbcaf2d2132a7e870367d407 /intern.h
parent839f4c5f3fdb4ea6b270fce17f1c3881060087d4 (diff)
980626
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@255 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r--intern.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/intern.h b/intern.h
index 5637563f2f..aa724d0d3c 100644
--- a/intern.h
+++ b/intern.h
@@ -123,17 +123,17 @@ VALUE class_new_instance _((int, VALUE*, VALUE));
VALUE f_lambda _((void));
void rb_set_end_proc _((void (*)(),VALUE));
void gc_mark_threads _((void));
-void thred_schedule _((void));
-void thred_wait_fd _((int));
-void thred_fd_writable _((int));
-int thred_alone _((void));
-void thred_sleep _((int));
-void thred_sleep_forever _((void));
-VALUE thred_create _((VALUE (*)(), void*));
-void thred_interrupt _((void));
-void thred_trap_eval _((VALUE, int));
-int thred_select();
-void thred_wait_for();
+void thread_schedule _((void));
+void thread_wait_fd _((int));
+void thread_fd_writable _((int));
+int thread_alone _((void));
+void thread_sleep _((int));
+void thread_sleep_forever _((void));
+VALUE thread_create _((VALUE (*)(), void*));
+void thread_interrupt _((void));
+void thread_trap_eval _((VALUE, int));
+int thread_select();
+void thread_wait_for();
/* file.c */
VALUE file_open _((char*, char*));
int eaccess _((char*, int));