1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* intern.h (ruby_stop): never return.

* ruby.h (ruby_run): ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2003-10-14 02:53:53 +00:00
parent 839ef7bfbb
commit 921d595fd4
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
Tue Oct 14 11:53:49 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
* intern.h (ruby_stop): never return.
* ruby.h (ruby_run): ditto.
Tue Oct 14 04:43:55 2003 Tanaka Akira <akr@m17n.org>
* lib/pathname.rb (realpath): make ELOOP check bit more robust.

View file

@ -187,7 +187,7 @@ void rb_set_end_proc _((void (*)(VALUE), VALUE));
void rb_mark_end_proc _((void));
void rb_exec_end_proc _((void));
void ruby_finalize _((void));
void ruby_stop _((int));
NORETURN(void ruby_stop _((int)));
int ruby_cleanup _((int));
int ruby_exec _((void));
void rb_gc_mark_threads _((void));

2
ruby.h
View file

@ -550,7 +550,7 @@ VALUE rb_require _((const char*));
void ruby_init _((void));
void ruby_options _((int, char**));
void ruby_run _((void));
NORETURN(void ruby_run _((void)));
RUBY_EXTERN VALUE rb_mKernel;
RUBY_EXTERN VALUE rb_mComparable;