From: Guillermo J. Rozas Date: Tue, 29 Oct 1991 22:38:34 +0000 (+0000) Subject: Split the actual search in search_path_for_file into X-Git-Tag: 20090517-FFI~10100 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=00b1ae1495f8d8832ac757c580784f91b97339bd;p=mit-scheme.git Split the actual search in search_path_for_file into search_for_library_file so that other parts of the microcode can call it without terminating in case of failure. --- diff --git a/v7/src/microcode/option.h b/v7/src/microcode/option.h index 6899cc8ab..b893d87b4 100644 --- a/v7/src/microcode/option.h +++ b/v7/src/microcode/option.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/option.h,v 1.4 1991/09/07 22:30:56 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/option.h,v 1.5 1991/10/29 22:38:34 jinx Exp $ Copyright (c) 1990-1991 Massachusetts Institute of Technology @@ -70,6 +70,9 @@ int option_gc_window_size; int option_gc_write_overlap; extern void EXFUN (read_command_line_options, (int argc, CONST char ** argv)); + +extern CONST char * EXFUN (search_for_library_file, (CONST char *)); + extern CONST char * EXFUN (search_path_for_file, (CONST char * option, CONST char * filename, int default_p));