summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-09-22 05:09:40 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-09-22 05:09:40 +0000
commit4c647c64ad12bbd9b186f4e62f9ba0e29874cf85 (patch)
treeb239a866da7c4be1916b0d750241967308aed2aa /lib
parent2c93b3d9e810a67194c5803e1dcf940075ea95e3 (diff)
Prototype __seekdir() before using.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/gen/seekdir.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/gen/seekdir.c b/lib/libc/gen/seekdir.c
index aaded344558..a2049ee8a9d 100644
--- a/lib/libc/gen/seekdir.c
+++ b/lib/libc/gen/seekdir.c
@@ -32,12 +32,14 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: seekdir.c,v 1.2 1996/08/19 08:25:43 tholo Exp $";
+static char rcsid[] = "$OpenBSD: seekdir.c,v 1.3 1997/09/22 05:09:39 millert Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
#include <dirent.h>
+void __seekdir __P((DIR *, long));
+
/*
* Seek to an entry in a directory.
* __seekdir is in telldir.c so that it can share opaque data structures.