diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-29 08:08:52 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-29 08:08:52 +0000 |
commit | 59bc2dd227928b8f951bcefa798e8a3a792a994f (patch) | |
tree | 013b5a32327c1136ceb813f76e1db5a2a3530fe0 /sys/lib/libsa | |
parent | 6d3fa394c28f0e2bf3aa1c46f281a09148bc48df (diff) |
introduce readdir.
Diffstat (limited to 'sys/lib/libsa')
-rw-r--r-- | sys/lib/libsa/nfs.h | 4 | ||||
-rw-r--r-- | sys/lib/libsa/ufs.h | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/sys/lib/libsa/nfs.h b/sys/lib/libsa/nfs.h index 3b72827db82..e3a2356e3e5 100644 --- a/sys/lib/libsa/nfs.h +++ b/sys/lib/libsa/nfs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs.h,v 1.2 1996/09/23 14:19:00 mickey Exp $ */ +/* $OpenBSD: nfs.h,v 1.3 1996/10/29 08:08:51 mickey Exp $ */ /* $NetBSD: nfs.h,v 1.4 1995/09/18 21:19:39 pk Exp $ */ /*- @@ -43,4 +43,4 @@ ssize_t nfs_write __P((struct open_file *f, void *buf, off_t nfs_seek __P((struct open_file *f, off_t offset, int where)); int nfs_stat __P((struct open_file *f, struct stat *sb)); int nfs_mount __P((int, struct in_addr, char *)); - +int nfs_readdir __P((struct open_file *f, char *name)); diff --git a/sys/lib/libsa/ufs.h b/sys/lib/libsa/ufs.h index 40af70ba7c9..d3e40e98ac8 100644 --- a/sys/lib/libsa/ufs.h +++ b/sys/lib/libsa/ufs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ufs.h,v 1.3 1996/09/23 14:19:06 mickey Exp $ */ +/* $OpenBSD: ufs.h,v 1.4 1996/10/29 08:08:51 mickey Exp $ */ /* $NetBSD: ufs.h,v 1.5 1995/10/20 01:35:25 cgd Exp $ */ /*- @@ -44,3 +44,5 @@ int ufs_write __P((struct open_file *f, void *buf, size_t size, size_t *resid)); off_t ufs_seek __P((struct open_file *f, off_t offset, int where)); int ufs_stat __P((struct open_file *f, struct stat *sb)); +int ufs_readdir __P((struct open_file *f, char *name)); + |