summaryrefslogtreecommitdiff
path: root/inotail.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2006-12-14 22:03:05 +0100
committerTobias Klauser <tklauser@xenon.tklauser.home>2006-12-14 22:03:05 +0100
commit5050a2f042287f814f90d8dd314fa57384e6e778 (patch)
tree1a8abf689cae33286eeaa8799e7be0cb245bdafa /inotail.c
parentb9057fcd6ea0712dbefeb47006f63c0bf0e18d5f (diff)
inotail.c: Move some macros to inotail.h
Some typos and useless blank lines are also fixed.
Diffstat (limited to 'inotail.c')
-rw-r--r--inotail.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/inotail.c b/inotail.c
index 731346f..8aa5279 100644
--- a/inotail.c
+++ b/inotail.c
@@ -41,13 +41,6 @@
#define PROGRAM_NAME "inotail"
#define BUFFER_SIZE 4096
-#define IS_PIPELIKE(mode) \
- (S_ISFIFO(mode) || S_ISSOCK(mode))
-
-/* (ino)tail works on these file types */
-#define IS_TAILABLE(mode) \
- (S_ISREG(mode) || IS_PIPELIKE(mode) || S_ISCHR(mode))
-
/* Print header with filename before tailing the file? */
static char verbose = 0;