diff options
author | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-07-03 15:27:56 +0000 |
---|---|---|
committer | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-07-03 15:27:56 +0000 |
commit | 7beabedb0a7ad957f04117c7efd200790c1f7780 (patch) | |
tree | db314908dff3bbb172f17f1f598d8e615fe98f80 /libguile/script.c | |
parent | 166882e16b427309838da365e898f69292fea43b (diff) | |
download | guile-7beabedb0a7ad957f04117c7efd200790c1f7780.tar.gz |
* posix.c (getlogin): getlogin() implementation for Windows.
* backtrace.c, ioext.c: Include <stdio.h>.
* unif.c, script.c, rw.c, error.c: Include <io.h>, if it does
exist.
* cpp_sig_symbols.in: Added SIGBREAK.
Diffstat (limited to 'libguile/script.c')
-rw-r--r-- | libguile/script.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libguile/script.c b/libguile/script.c index 0c4810446..e16e65d77 100644 --- a/libguile/script.c +++ b/libguile/script.c @@ -64,6 +64,10 @@ #include <unistd.h> /* for X_OK define */ #endif +#ifdef HAVE_IO_H +#include <io.h> +#endif + /* Concatentate str2 onto str1 at position n and return concatenated string if file exists; 0 otherwise. */ |