From 1f9e22264dca1cf99a894d50b39fcfea680906eb Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Tue, 6 Aug 1996 20:29:18 +0000 Subject: [PATCH] Changes for NeXT, suggested by Robert Brown. * configure.in: Call AC_TYPE_MODE_T. (AC_CHECK_HEADERS): Add libc.h, to get more prototypes on the NeXT. Put header file list in alphabetical order. * configure, scmconfig.h.in: Regenerated. * filesys.c [HAVE_LIBC_H]: #include . * filesys.c [HAVE_STRING_H]: #include , to get prototype for strerror. --- libguile/filesys.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libguile/filesys.c b/libguile/filesys.c index 30ce43216..1122d1f88 100644 --- a/libguile/filesys.c +++ b/libguile/filesys.c @@ -57,10 +57,18 @@ #include #endif +#ifdef HAVE_LIBC_H +#include +#endif + #ifdef HAVE_SYS_SELECT_H #include #endif +#ifdef HAVE_STRING_H +#include +#endif + #include #include #include