1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

* 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.
This commit is contained in:
Martin Grabmüller 2001-07-03 15:27:56 +00:00
parent 166882e16b
commit 7beabedb0a
9 changed files with 50 additions and 1 deletions

View file

@ -61,6 +61,11 @@
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
/* For Windows... */
#ifdef HAVE_IO_H
#include <io.h>
#endif