update manpages

This commit is contained in:
Connor Lane Smith
2011-05-25 18:29:46 +01:00
parent 416a068df6
commit 47308190b3
12 changed files with 29 additions and 3 deletions

2
head.c
View File

@@ -38,7 +38,7 @@ void
head(FILE *fp, const char *str, long n)
{
char buf[BUFSIZ];
int i;
long i;
for(i = 0; i < n && fgets(buf, sizeof buf, fp); i++)
fputs(buf, stdout);