diff options
author | Jim Meyering <jim@meyering.net> | 1997-06-03 20:01:47 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-06-03 20:01:47 +0000 |
commit | f1390de4c36fb34d2a48e96b9ebe729b8c8302a7 (patch) | |
tree | f6e8eea32cbf194fc97bb52a266f17ac05602607 | |
parent | 93ede2c8e17f3ab5f6224d29b91bf173d61fa578 (diff) | |
download | coreutils-f1390de4c36fb34d2a48e96b9ebe729b8c8302a7.tar.xz |
[HAVE_UNISTD_H]: Include unistd.h.
John Gatewood Ham reported that this is necessary for DJGPP/Win95.
-rw-r--r-- | lib/fileblocks.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/fileblocks.c b/lib/fileblocks.c index 0cfebb541..7f696ab2f 100644 --- a/lib/fileblocks.c +++ b/lib/fileblocks.c @@ -1,5 +1,5 @@ /* Convert file size to number of blocks on System V-like machines. - Copyright (C) 1990 Free Software Foundation, Inc. + Copyright (C) 1990, 1997 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -25,6 +25,10 @@ # include <sys/types.h> # include <sys/param.h> +# if HAVE_UNISTD_H +# include <unistd.h> +# endif + # ifndef NINDIR /* Some SysV's, like Irix, seem to lack these. Hope they're correct. */ /* Size of a indirect block, in bytes. */ |