properly #ifdef Windows-specific function

svn: r5370
This commit is contained in:
Matthew Flatt 2007-01-17 00:53:27 +00:00
parent 58e05fbd65
commit 289df59e7f

View File

@ -4398,10 +4398,12 @@ static Scheme_Object *expand_path(int argc, Scheme_Object *argv[])
return scheme_make_sized_path(filename, strlen(filename), 1); return scheme_make_sized_path(filename, strlen(filename), 1);
} }
#ifdef USE_FINDFIRST
void do_find_close(void *p) void do_find_close(void *p)
{ {
FIND_CLOSE(*(FF_HANDLE_TYPE *)p); FIND_CLOSE(*(FF_HANDLE_TYPE *)p);
} }
#endif
static Scheme_Object *do_directory_list(int break_ok, int argc, Scheme_Object *argv[]) static Scheme_Object *do_directory_list(int break_ok, int argc, Scheme_Object *argv[])
{ {