summaryrefslogtreecommitdiff
path: root/src/tail.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-01-05 10:27:03 +0000
committerJim Meyering <jim@meyering.net>2006-01-05 10:27:03 +0000
commit91be6f4495ee1cced35254c695b636c6086058ea (patch)
tree6d028975043417db5d69816bbff7c7f142368ddc /src/tail.c
parent084903a2b1128e65c115c82d3cbe46b5223b1367 (diff)
downloadcoreutils-91be6f4495ee1cced35254c695b636c6086058ea.tar.xz
(ENOSYS) [!defined ENOSYS]: Don't define here.
It's already defined in "system.h".
Diffstat (limited to 'src/tail.c')
-rw-r--r--src/tail.c6
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