summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-07 03:26:30 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-07 03:26:30 +0000
commit72de92d1f9f7ad5861f151f972db085cdf3e0edb (patch)
treebba75ce2e5907ca0c425d1e2421cbbc9d2b65a50 /internal.h
parent293249fba4c149e690c28c1ee41f9056173682a6 (diff)
rb_load_fail
* error.c (rb_load_fail): use path as a string, not char*. * internal.h: (rb_load_fail): moved from ruby/intern.h. * ruby.c (load_file_internal): fname cannot be NULL. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34941 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index cf274ac223..e25062bc2f 100644
--- a/internal.h
+++ b/internal.h
@@ -116,6 +116,7 @@ VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase);
/* load.c */
VALUE rb_get_load_path(void);
+NORETURN(void rb_load_fail(VALUE));
/* math.c */
VALUE rb_math_atan2(VALUE, VALUE);