summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>1996-10-17 06:49:58 +0000
committermickey <mickey@openbsd.org>1996-10-17 06:49:58 +0000
commitcb499b8a60f75d45ba8583cfaa83783cc13a96f4 (patch)
treebc9060f0cbe7a35cd5e3ab715c124592b5588a55
parentcontextual usage (diff)
downloadwireguard-openbsd-cb499b8a60f75d45ba8583cfaa83783cc13a96f4.tar.xz
wireguard-openbsd-cb499b8a60f75d45ba8583cfaa83783cc13a96f4.zip
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));