summaryrefslogtreecommitdiff
path: root/include
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 /include
parent9020e890888a513eaa5bb0659a435d19a4b748ec (diff)
export non-constipated sys_errlist[] to userland
Diffstat (limited to 'include')
-rw-r--r--include/stdio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stdio.h b/include/stdio.h
index 7913621a488..acff5f23944 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdio.h,v 1.5 1996/07/25 05:47:59 downsj Exp $ */
+/* $OpenBSD: stdio.h,v 1.6 1996/07/26 10:34:25 deraadt Exp $ */
/* $NetBSD: stdio.h,v 1.18 1996/04/25 18:29:21 jtc Exp $ */
/*-
@@ -238,7 +238,7 @@ char *gets __P((char *));
#define __SYS_ERRLIST
extern int sys_nerr; /* perror(3) external variables */
-extern const char *const sys_errlist[];
+extern char *sys_errlist[];
#endif
void perror __P((const char *));
int printf __P((const char *, ...));