summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1997-02-16 14:49:06 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1997-02-16 14:49:06 +0000
commitf5709ed4c25861af91f3187d3144378de1083066 (patch)
tree2db5ed4b53e04340541bd629966028a39205344b
parent7d3ee69ae5b4b7e3097cf273ae51d11765898046 (diff)
missed prototypes
-rw-r--r--sys/lib/libsa/stand.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h
index bbad6087786..dc3be5e178d 100644
--- a/sys/lib/libsa/stand.h
+++ b/sys/lib/libsa/stand.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stand.h,v 1.19 1997/02/07 07:08:12 mickey Exp $ */
+/* $OpenBSD: stand.h,v 1.20 1997/02/16 14:49:05 mickey Exp $ */
/* $NetBSD: stand.h,v 1.18 1996/11/30 04:35:51 gwr Exp $ */
/*-
@@ -168,7 +168,9 @@ ssize_t read __P((int, void *, size_t));
ssize_t write __P((int, void *, size_t));
int stat __P((const char *path, struct stat *sb));
int fstat __P((int fd, struct stat *sb));
-int readdir __P((int fd, char *));
+int opendir __P((char *));
+int readdir __P((int, char *));
+void closedir __P((int));
int nodev __P((void));
int noioctl __P((struct open_file *, u_long, void *));
void nullsys __P((void));