diff options
author | Jim Meyering <jim@meyering.net> | 2006-01-05 10:27:03 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-01-05 10:27:03 +0000 |
commit | 91be6f4495ee1cced35254c695b636c6086058ea (patch) | |
tree | 6d028975043417db5d69816bbff7c7f142368ddc /src | |
parent | 084903a2b1128e65c115c82d3cbe46b5223b1367 (diff) | |
download | coreutils-91be6f4495ee1cced35254c695b636c6086058ea.tar.xz |
(ENOSYS) [!defined ENOSYS]: Don't define here.
It's already defined in "system.h".
Diffstat (limited to 'src')
-rw-r--r-- | src/tail.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/tail.c b/src/tail.c index 52e0bab86..ee18f31de 100644 --- a/src/tail.c +++ b/src/tail.c @@ -51,12 +51,6 @@ #define AUTHORS \ "Paul Rubin", "David MacKenzie, Ian Lance Taylor", "Jim Meyering" -#ifndef ENOSYS - /* Some systems don't have ENOSYS -- this should be a big enough - value that no valid errno value will match it. */ -# define ENOSYS 99999 -#endif - /* Number of items to tail. */ #define DEFAULT_N_LINES 10 |