summaryrefslogtreecommitdiff
path: root/libguile/filesys.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1999-07-19 07:49:58 +0000
committerJim Blandy <jimb@red-bean.com>1999-07-19 07:49:58 +0000
commitdef804a3812d8264b0c35e257cdea1de34d58df8 (patch)
tree8fe14a5ab67cc70aad9a489d0bc63f3fffc8d55c /libguile/filesys.c
parent2adc1dd3af51c053dee5ead3e465729428b96584 (diff)
downloadguile-def804a3812d8264b0c35e257cdea1de34d58df8.tar.gz
* filesys.c: #include <io.h>, if we have it.
* scmconfig.h.in: Regenerated.
Diffstat (limited to 'libguile/filesys.c')
-rw-r--r--libguile/filesys.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/libguile/filesys.c b/libguile/filesys.c
index 976409494..39e40b8cd 100644
--- a/libguile/filesys.c
+++ b/libguile/filesys.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -48,7 +48,12 @@
#include "iselect.h"
#include "filesys.h"
+
+#ifdef HAVE_IO_H
+#include <io.h>
+#endif
+
#ifdef TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>