summaryrefslogtreecommitdiff
path: root/include/ruby
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-09-12 08:55:14 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-09-23 09:09:36 +0900
commite380f78851b27511f165bcd841626f2cb9fa87be (patch)
tree1c7dec291dec777eb8a77d57e66e106a000235a7 /include/ruby
parented27c2514c2f4140546dce2e8f5f64cb91712c47 (diff)
Removed rb_find_file_ext_safe and rb_find_file_safe
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3537
Diffstat (limited to 'include/ruby')
-rw-r--r--include/ruby/internal/intern/file.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/ruby/internal/intern/file.h b/include/ruby/internal/intern/file.h
index 5a52d570e4..9ebefece66 100644
--- a/include/ruby/internal/intern/file.h
+++ b/include/ruby/internal/intern/file.h
@@ -31,8 +31,6 @@ VALUE rb_file_expand_path(VALUE, VALUE);
VALUE rb_file_s_absolute_path(int, const VALUE *);
VALUE rb_file_absolute_path(VALUE, VALUE);
VALUE rb_file_dirname(VALUE fname);
-int rb_find_file_ext_safe(VALUE*, const char* const*, int); /* Remove in 3.0 */
-VALUE rb_find_file_safe(VALUE, int); /* Remove in 3.0 */
int rb_find_file_ext(VALUE*, const char* const*);
VALUE rb_find_file(VALUE);
VALUE rb_file_directory_p(VALUE,VALUE);