commit 210137fba4cfbc65cd88547a996fb076d138c56f
parent ad442060b822ade3cd1f7d7dac3daf29fb954f38
Author: Connor Lane Smith <cls@lubutu.com>
Date: Fri, 27 May 2011 00:54:10 +0100
fix typo
Diffstat:
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/tail.1 b/tail.1
@@ -8,8 +8,8 @@ tail \- output last part of a file
.RI [ file ]
.SH DESCRIPTION
.B tail
-writes the first 10 lines of the file to stdout. If no file is given, tail
-reads from stdin.
+writes the last 10 lines of the file to stdout. If no file is given, tail reads
+from stdin.
.SH OPTIONS
.TP
.BI \-n " lines"
diff --git a/util/recurse.c b/util/recurse.c
@@ -1,7 +1,6 @@
/* See LICENSE file for copyright and license details. */
#include <dirent.h>
#include <errno.h>
-#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>