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

* filesys.c, posix.c: #include <sys/types.h> before <sys/stat.h>.

This is necessary on Ultrix, and doesn't hurt portability.
This commit is contained in:
Jim Blandy 1996-08-01 10:54:50 +00:00
parent 781031891a
commit 8cc713820f
2 changed files with 2 additions and 0 deletions

View file

@ -61,6 +61,7 @@
#include <sys/select.h> #include <sys/select.h>
#endif #endif
#include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <fcntl.h> #include <fcntl.h>

View file

@ -64,6 +64,7 @@
#include <sys/select.h> #include <sys/select.h>
#endif #endif
#include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <fcntl.h> #include <fcntl.h>