summaryrefslogtreecommitdiff
path: root/load.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-25 03:48:57 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-25 03:48:57 +0000
commit1aff775d398793d6ff606a1e7efb9eac6099c152 (patch)
tree6645bb3827ee6017d7a6cf6cd784f385f5693cf7 /load.c
parentd0830a222c261922cb73e340ae32bf6f32f6845e (diff)
* load.c (rb_f_require_relative): don't omit return type.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30343 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'load.c')
-rw-r--r--load.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/load.c b/load.c
index 2628b31c12..dee450906d 100644
--- a/load.c
+++ b/load.c
@@ -461,7 +461,7 @@ rb_f_require(VALUE obj, VALUE fname)
* file's path. If the file's path cannot be determined a LoadError is raised.
* If a file is loaded +true+ is returned and false otherwise.
*/
-
+VALUE
rb_f_require_relative(VALUE obj, VALUE fname)
{
VALUE rb_current_realfilepath(void);