From 393f665e33782d4a91813abe599b1b28d675127d Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 3 Sep 2001 11:30:58 +0000 Subject: [PATCH] * intern.h (rb_find_file_ext): changed from rb_find_file_noext(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1725 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ intern.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 629557ccfe..657f6885fe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Sep 3 20:26:08 2001 Nobuyoshi Nakada + + * intern.h (rb_find_file_ext): changed from rb_find_file_noext(). + Mon Sep 3 14:11:17 2001 Akinori MUSHA * error.c: unbreak the build on *BSD with gcc 3.0.1 by removing diff --git a/intern.h b/intern.h index 3f25ae8d44..31bc5a049d 100644 --- a/intern.h +++ b/intern.h @@ -185,7 +185,7 @@ void rb_thread_atfork _((void)); int eaccess _((const char*, int)); VALUE rb_file_s_expand_path _((int, VALUE *)); void rb_file_const _((const char*, VALUE)); -int rb_find_file_noext _((VALUE*)); +int rb_find_file_ext _((VALUE*, char**)); VALUE rb_find_file _((VALUE)); /* gc.c */ void rb_gc_mark_locations _((VALUE*, VALUE*));