summaryrefslogtreecommitdiff
path: root/libguile/filesys.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1996-08-01 10:54:50 +0000
committerJim Blandy <jimb@red-bean.com>1996-08-01 10:54:50 +0000
commit8cc713820f0b08846ed0010aea13be2a68c0d15a (patch)
treec8016e00ead09bebd9e46a8dfdbfc3576e7351fa /libguile/filesys.c
parent781031891a858f5f2310f24e86b166c9e0fa793a (diff)
downloadguile-8cc713820f0b08846ed0010aea13be2a68c0d15a.tar.gz
* filesys.c, posix.c: #include <sys/types.h> before <sys/stat.h>.
This is necessary on Ultrix, and doesn't hurt portability.
Diffstat (limited to 'libguile/filesys.c')
-rw-r--r--libguile/filesys.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/filesys.c b/libguile/filesys.c
index 5ca9b309c..556feba88 100644
--- a/libguile/filesys.c
+++ b/libguile/filesys.c
@@ -61,6 +61,7 @@
#include <sys/select.h>
#endif
+#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>