diff options
author | paul <paul@FreeBSD.org> | 2004-11-03 15:23:11 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 2004-11-03 15:23:11 +0000 |
commit | 5386ac46ea6d22cd22ae9cbfcc860957ee5b570b (patch) | |
tree | 5f07f41ffc5b3603a08c3640429a79ee82fdc228 /usr.bin/tail/misc.c | |
parent | d96345ff4775adb9812a384c8bc6a8a16076d862 (diff) | |
download | FreeBSD-src-5386ac46ea6d22cd22ae9cbfcc860957ee5b570b.zip FreeBSD-src-5386ac46ea6d22cd22ae9cbfcc860957ee5b570b.tar.gz |
Convert to ANSI style function definitions.
Diffstat (limited to 'usr.bin/tail/misc.c')
-rw-r--r-- | usr.bin/tail/misc.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/usr.bin/tail/misc.c b/usr.bin/tail/misc.c index 6d0ecdb..c2f1883 100644 --- a/usr.bin/tail/misc.c +++ b/usr.bin/tail/misc.c @@ -73,9 +73,7 @@ oerr() * absolute file offset `startoff'. May move map window. */ int -mapprint(mip, startoff, len) - struct mapinfo *mip; - off_t startoff, len; +mapprint(struct mapinfo *mip, off_t startoff, off_t len) { int n; @@ -101,9 +99,7 @@ mapprint(mip, startoff, len) * aligned. */ int -maparound(mip, offset) - struct mapinfo *mip; - off_t offset; +maparound(struct mapinfo *mip, off_t offset) { if (mip->start != NULL && munmap(mip->start, mip->maplen) != 0) |