diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-10-30 23:31:11 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-10-30 23:31:11 +0000 |
commit | 66b47b6c790c7e27f81bd2ad515d9002ec875710 (patch) | |
tree | b1034609afc72ed40cc58edcfda90def0152a691 /libguile/filesys.h | |
parent | 7adf98eeb4e8b85ca7bc0c7530487f2a7f8a7bbb (diff) | |
download | guile-66b47b6c790c7e27f81bd2ad515d9002ec875710.tar.gz |
* filesys.c, filesys.h (scm_input_waiting_p): Moved from ports.c.
Motivation: This is system specific code which is related to file
I/O. It also may use select. Added code by Gary Houston to
detect presence of character in stdio buffers.
Diffstat (limited to 'libguile/filesys.h')
-rw-r--r-- | libguile/filesys.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/filesys.h b/libguile/filesys.h index b296d04da..ff7a28664 100644 --- a/libguile/filesys.h +++ b/libguile/filesys.h @@ -95,6 +95,7 @@ extern SCM scm_sys_closedir SCM_P ((SCM port)); extern SCM scm_sys_chdir SCM_P ((SCM str)); extern SCM scm_sys_getcwd SCM_P ((void)); extern SCM scm_sys_select SCM_P ((SCM reads, SCM writes, SCM excepts, SCM secs, SCM msecs)); +extern int scm_input_waiting_p SCM_P ((FILE *file, char *caller)); extern SCM scm_sys_symlink SCM_P ((SCM oldpath, SCM newpath)); extern SCM scm_sys_readlink SCM_P ((SCM path)); extern SCM scm_sys_lstat SCM_P ((SCM str)); |