summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-10-29 08:00:59 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-10-29 08:00:59 +0000
commitc36858e72efeb909ceea98989d22d5326ea3b75f (patch)
treec49272ae5c6e6f3d3ec7c46278df719148475bfe /sys
parentf0dc023cbfa16858bc87729a75fe5b098da329ae (diff)
-Wall happiness (strerror prototype)
Diffstat (limited to 'sys')
-rw-r--r--sys/lib/libsa/saerrno.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/lib/libsa/saerrno.h b/sys/lib/libsa/saerrno.h
index 82e584f1aaf..ef1dfe6ce79 100644
--- a/sys/lib/libsa/saerrno.h
+++ b/sys/lib/libsa/saerrno.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: saerrno.h,v 1.3 1996/09/23 14:19:03 mickey Exp $ */
+/* $OpenBSD: saerrno.h,v 1.4 1996/10/29 08:00:58 mickey Exp $ */
/* $NetBSD: saerrno.h,v 1.6 1995/09/18 21:19:45 pk Exp $ */
/*
@@ -54,3 +54,5 @@ extern int errno;
#define EECC (ELAST+11) /* uncorrectable ecc error */
#define EHER (ELAST+12) /* hard error */
#define ESALAST (ELAST+12) /* */
+
+char *strerror __P((int err));