From 6b5ad7c5b203b7ffa8b86b1d0b9b15df56a90a27 Mon Sep 17 00:00:00 2001 From: eban Date: Wed, 10 Jan 2001 07:30:18 +0000 Subject: setres[ug]id, NORETURN git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1106 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- intern.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'intern.h') diff --git a/intern.h b/intern.h index 640fb5d836..e36a176436 100644 --- a/intern.h +++ b/intern.h @@ -104,13 +104,13 @@ EXTERN int ruby_nerrs; VALUE rb_exc_new _((VALUE, const char*, long)); VALUE rb_exc_new2 _((VALUE, const char*)); VALUE rb_exc_new3 _((VALUE, VALUE)); -void rb_loaderror __((const char*, ...)) NORETURN; +NORETURN(void rb_loaderror __((const char*, ...))); void rb_compile_error __((const char*, ...)); void rb_compile_error_append __((const char*, ...)); -void rb_error_frozen _((char*)) NORETURN; +NORETURN(void rb_error_frozen _((char*))); /* eval.c */ -void rb_exc_raise _((VALUE)) NORETURN; -void rb_exc_fatal _((VALUE)) NORETURN; +NORETURN(void rb_exc_raise _((VALUE))); +NORETURN(void rb_exc_fatal _((VALUE))); void rb_remove_method _((VALUE, const char*)); void rb_disable_super _((VALUE, const char*)); void rb_enable_super _((VALUE, const char*)); @@ -132,7 +132,7 @@ ID rb_frame_last_func _((void)); VALUE rb_obj_instance_eval _((int, VALUE*, VALUE)); void rb_load _((VALUE, int)); void rb_load_protect _((VALUE, int, int*)); -void rb_jump_tag _((int)) NORETURN; +NORETURN(void rb_jump_tag _((int))); int rb_provided _((const char*)); void rb_provide _((const char*)); VALUE rb_f_require _((VALUE, VALUE)); -- cgit v1.2.3