diff options
author | Jim Meyering <jim@meyering.net> | 1994-11-03 04:33:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1994-11-03 04:33:52 +0000 |
commit | 1423156a9c976188a32a3212674900cdf9e0d12b (patch) | |
tree | 77871b2e39ef55890e4407416176591049979d7a /src/tail.c | |
parent | 40f3df0acdb33f8a720a240e9101112222eff017 (diff) | |
download | coreutils-1423156a9c976188a32a3212674900cdf9e0d12b.tar.xz |
merge with 1.9.1j2
Diffstat (limited to 'src/tail.c')
-rw-r--r-- | src/tail.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tail.c b/src/tail.c index 7fccd9e3a..5226cc0b5 100644 --- a/src/tail.c +++ b/src/tail.c @@ -70,9 +70,10 @@ /* Number of items to tail. */ #define DEFAULT_NUMBER 10 -/* FIXME: use definition from stdio.h. */ /* Size of atomic reads. */ +#ifndef BUFSIZE #define BUFSIZE (512 * 8) +#endif /* Number of bytes per item we are printing. If 0, tail in lines. */ |