summaryrefslogtreecommitdiff
path: root/usr.bin/tail/extern.h
diff options
context:
space:
mode:
authorEric Jackson <ericj@cvs.openbsd.org>2000-06-23 17:04:47 +0000
committerEric Jackson <ericj@cvs.openbsd.org>2000-06-23 17:04:47 +0000
commit605da317f368bae6e6c80b626f0a28cdfeadd624 (patch)
treeb8e0c578a60ea591c5c7dbc27159ddee7f918959 /usr.bin/tail/extern.h
parenta37dbcd2ced8b343e4563bd46353a3c4b4e548db (diff)
Get rid of repeating error messages; From netbsd millert@ ok
Diffstat (limited to 'usr.bin/tail/extern.h')
-rw-r--r--usr.bin/tail/extern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tail/extern.h b/usr.bin/tail/extern.h
index a87460ac699..983ca7f3deb 100644
--- a/usr.bin/tail/extern.h
+++ b/usr.bin/tail/extern.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: extern.h,v 1.4 1999/02/03 02:09:30 millert Exp $ */
+/* $OpenBSD: extern.h,v 1.5 2000/06/23 17:04:46 ericj Exp $ */
/* $NetBSD: extern.h,v 1.3 1994/11/23 07:42:00 jtc Exp $ */
/*-
@@ -45,8 +45,8 @@ enum STYLE { NOTSET = 0, FBYTES, FLINES, RBYTES, RLINES, REVERSE };
void forward __P((FILE *, enum STYLE, long, struct stat *));
void reverse __P((FILE *, enum STYLE, long, struct stat *));
-void bytes __P((FILE *, off_t));
-void lines __P((FILE *, off_t));
+int bytes __P((FILE *, off_t));
+int lines __P((FILE *, off_t));
void ierr __P((void));
void oerr __P((void));