From 5386ac46ea6d22cd22ae9cbfcc860957ee5b570b Mon Sep 17 00:00:00 2001 From: paul Date: Wed, 3 Nov 2004 15:23:11 +0000 Subject: Convert to ANSI style function definitions. --- usr.bin/tail/read.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'usr.bin/tail/read.c') diff --git a/usr.bin/tail/read.c b/usr.bin/tail/read.c index f904ef0..ff66f78 100644 --- a/usr.bin/tail/read.c +++ b/usr.bin/tail/read.c @@ -66,9 +66,7 @@ static const char sccsid[] = "@(#)read.c 8.1 (Berkeley) 6/6/93"; * the end. */ int -bytes(fp, off) - FILE *fp; - off_t off; +bytes(FILE *fp, off_t off) { int ch, len, tlen; char *ep, *p, *t; @@ -135,9 +133,7 @@ bytes(fp, off) * the end. */ int -lines(fp, off) - FILE *fp; - off_t off; +lines(FILE *fp, off_t off) { struct { int blen; -- cgit v1.1