diff options
author | Roland McGrath <roland@redhat.com> | 1993-04-12 20:52:45 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-04-12 20:52:45 +0000 |
commit | 48f4ce2825740274ade4f073f90aa371255feefa (patch) | |
tree | fc3e5251cfd24026b9d7e2194a00d6ca8ba4faad | |
parent | d8b7640a817760d0f0cd5f595d7422119a2dfcf4 (diff) | |
download | gunmake-48f4ce2825740274ade4f073f90aa371255feefa.tar.gz |
Formerly remake.c.~49~
-rw-r--r-- | remake.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -22,12 +22,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "dep.h" #include "file.h" -#if !defined (USG) && !defined (POSIX) && !defined (eta10) -#ifndef sgi -#include <sys/file.h> -#endif -#else +#ifdef HAVE_FCNTL_H #include <fcntl.h> +#else +#include <sys/file.h> #endif extern int try_implicit_rule (); |