From b78d13a5cb3e95d6826d437a1f67adf83fef2f78 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Wed, 11 Oct 2006 07:19:42 +0000 Subject: [PATCH] tail is not implemented --- src/tail.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tail.c b/src/tail.c index c7c677c..4ff91ec 100644 --- a/src/tail.c +++ b/src/tail.c @@ -10,6 +10,7 @@ /* tail */ static int _tail(void) { + /* FIXME implement */ return 1; } @@ -27,6 +28,7 @@ int main(int argc, char * argv[]) { int o; + /* FIXME actually collect arguments */ while((o = getopt(argc, argv, "fc:n:")) != -1) switch(o) {