summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-10-17 06:49:59 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-10-17 06:49:59 +0000
commitcd6f1ef96899d325af1698b8c242330182e05507 (patch)
treef27510a74d06dcc7a3c874333f8b18e337bb6e39
parent8d11c386e9e66eef18a4b8c92a01880f83c8bb39 (diff)
prototype stat,fstat
-rw-r--r--sys/lib/libsa/stand.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h
index d73d3ac77e9..9e3e105af8a 100644
--- a/sys/lib/libsa/stand.h
+++ b/sys/lib/libsa/stand.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stand.h,v 1.10 1996/10/16 13:24:07 mickey Exp $ */
+/* $OpenBSD: stand.h,v 1.11 1996/10/17 06:49:58 mickey Exp $ */
/* $NetBSD: stand.h,v 1.13 1996/01/13 22:25:42 leo Exp $ */
/*-
@@ -148,6 +148,8 @@ int close __P((int));
void closeall __P((void));
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));
ssize_t zread __P((int, void *, size_t)); /* for execz */
int nodev __P((void));