diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-02-16 14:49:06 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-02-16 14:49:06 +0000 |
commit | f5709ed4c25861af91f3187d3144378de1083066 (patch) | |
tree | 2db5ed4b53e04340541bd629966028a39205344b | |
parent | 7d3ee69ae5b4b7e3097cf273ae51d11765898046 (diff) |
missed prototypes
-rw-r--r-- | sys/lib/libsa/stand.h | 6 |
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)); |