summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-26 10:34:29 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-26 10:34:29 +0000
commit882f4325922368dcbcf5b2641e6b96c51543251d (patch)
tree65d3284b20db5a8b0dcc9a55dc2eefc1e707451f /sys
parent9020e890888a513eaa5bb0659a435d19a4b748ec (diff)
export non-constipated sys_errlist[] to userland
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/errno.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/errno.h b/sys/sys/errno.h
index f7215d4ee91..e9835629029 100644
--- a/sys/sys/errno.h
+++ b/sys/sys/errno.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: errno.h,v 1.4 1996/07/25 05:44:10 downsj Exp $ */
+/* $OpenBSD: errno.h,v 1.5 1996/07/26 10:34:28 deraadt Exp $ */
/* $NetBSD: errno.h,v 1.10 1996/01/20 01:33:53 jtc Exp $ */
/*
@@ -48,7 +48,7 @@ extern int errno; /* global error number */
#define __SYS_ERRLIST
extern int sys_nerr;
-extern const char *const sys_errlist[];
+extern char *sys_errlist[];
#endif
#endif