From 36b78e5b9370a4c26dbbd86e3c1042d3c83d4687 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 29 Aug 2008 23:59:32 +0000 Subject: * include/ruby/intern.h (rb_file_s_absolute_path), (rb_file_absolute_path): prototyped. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18935 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/intern.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/ruby/intern.h') diff --git a/include/ruby/intern.h b/include/ruby/intern.h index 70fbb00ca..b16237521 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -319,6 +319,8 @@ VALUE rb_exec_recursive(VALUE(*)(VALUE, VALUE, int),VALUE,VALUE); /* file.c */ VALUE rb_file_s_expand_path(int, VALUE *); VALUE rb_file_expand_path(VALUE, VALUE); +VALUE rb_file_s_absolute_path(int, VALUE *); +VALUE rb_file_absolute_path(VALUE, VALUE); void rb_file_const(const char*, VALUE); int rb_find_file_ext(VALUE*, const char* const*); VALUE rb_find_file(VALUE); -- cgit