Fixes for mingw32

This commit is contained in:
jjgarcia 2004-11-23 10:50:36 +00:00
parent 29989cb461
commit 72b21aa289
2 changed files with 7 additions and 3 deletions

View file

@ -1432,9 +1432,6 @@ extern cl_object cl_file_write_date(cl_object file);
extern cl_object cl_file_author(cl_object file);
extern cl_object si_file_kind(cl_object pathname, cl_object follow_links);
extern cl_object si_getcwd(void);
#ifdef _MSC_VER
extern cl_object si_get_library_pathname(void);
#endif
extern cl_object si_chdir _ARGS((cl_narg narg, cl_object directory, ...));
extern cl_object si_mkdir(cl_object directory, cl_object mode);
extern cl_object cl_directory _ARGS((cl_narg narg, cl_object directory, ...));

View file

@ -169,6 +169,13 @@ extern cl_fixnum ecl_runtime(void);
extern bool ecl_interrupt_enable;
/* unixfsys.d */
#if defined(_MSC_VER) || defined(mingw32)
extern cl_object si_get_library_pathname(void);
#endif
#ifdef __cplusplus
}
#endif