diff options
author | Peter Wemm <peter@FreeBSD.org> | 2002-09-02 05:50:28 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2002-09-02 05:50:28 +0000 |
commit | b2b29aad0d0d63394479a7459a0f17936ce7c064 (patch) | |
tree | 8440832ece5130fad994f5f3489b01676ab1ca4a /contrib/cvs/diff/system.h | |
parent | 025111ae1321e9d30f5615b762a47fb354971ba1 (diff) |
Notes
Diffstat (limited to 'contrib/cvs/diff/system.h')
-rw-r--r-- | contrib/cvs/diff/system.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/cvs/diff/system.h b/contrib/cvs/diff/system.h index f5037ecf70a9..218d047dc114 100644 --- a/contrib/cvs/diff/system.h +++ b/contrib/cvs/diff/system.h @@ -69,6 +69,16 @@ GNU General Public License for more details. #include <unistd.h> #endif +#ifdef HAVE_IO_H +# include <io.h> +#endif + +#ifdef HAVE_FCNTL_H +# include <fcntl.h> +#else +# include <sys/file.h> +#endif + #ifndef SEEK_SET #define SEEK_SET 0 #endif |