diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-02-16 19:48:22 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-02-16 19:48:22 +0000 |
commit | 5c0721459e11dce47bbb72f53b93b1dd182c025f (patch) | |
tree | f382051d0f85f080496808614f9fb79bccb58236 /usr.bin/tail/extern.h | |
parent | 3f2dad64aa7b17535fbbe86ef6791e09b1c3ce35 (diff) |
make -b and -c work with large offsets; tweak from millert@
ok henning@ itojun@ millert@
Diffstat (limited to 'usr.bin/tail/extern.h')
-rw-r--r-- | usr.bin/tail/extern.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tail/extern.h b/usr.bin/tail/extern.h index 5397118d37d..5ab91243f51 100644 --- a/usr.bin/tail/extern.h +++ b/usr.bin/tail/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.8 2003/06/03 02:56:17 millert Exp $ */ +/* $OpenBSD: extern.h,v 1.9 2004/02/16 19:48:21 otto Exp $ */ /* $NetBSD: extern.h,v 1.3 1994/11/23 07:42:00 jtc Exp $ */ /*- @@ -38,8 +38,8 @@ enum STYLE { NOTSET = 0, FBYTES, FLINES, RBYTES, RLINES, REVERSE }; -void forward(FILE *, enum STYLE, long, struct stat *); -void reverse(FILE *, enum STYLE, long, struct stat *); +void forward(FILE *, enum STYLE, off_t, struct stat *); +void reverse(FILE *, enum STYLE, off_t, struct stat *); int bytes(FILE *, off_t); int lines(FILE *, off_t); |