summaryrefslogtreecommitdiff
path: root/lib/libc/string/strerror.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>1998-11-15 17:21:49 +0000
committerchristos <christos@NetBSD.org>1998-11-15 17:21:49 +0000
commit8cc3f31582bebc97a110ee04eeef0c218edde9d6 (patch)
treef859fff4f9c1c8e2492196dc646ad2d6e6182adf /lib/libc/string/strerror.c
parentf8dfd806d0341d320cb25c1e7e8ee09088d745af (diff)
delint
Diffstat (limited to 'lib/libc/string/strerror.c')
-rw-r--r--lib/libc/string/strerror.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/string/strerror.c b/lib/libc/string/strerror.c
index 6b427998206..006138ff948 100644
--- a/lib/libc/string/strerror.c
+++ b/lib/libc/string/strerror.c
@@ -1,4 +1,4 @@
-/* $NetBSD: strerror.c,v 1.10 1998/07/27 09:47:45 mycroft Exp $ */
+/* $NetBSD: strerror.c,v 1.11 1998/11/15 17:21:49 christos Exp $ */
/*
* Copyright (c) 1988 Regents of the University of California.
@@ -38,7 +38,7 @@
#if 0
static char *sccsid = "@(#)strerror.c 5.6 (Berkeley) 5/4/91";
#else
-__RCSID("$NetBSD: strerror.c,v 1.10 1998/07/27 09:47:45 mycroft Exp $");
+__RCSID("$NetBSD: strerror.c,v 1.11 1998/11/15 17:21:49 christos Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -58,5 +58,6 @@ strerror(num)
{
static char buf[NL_TEXTMAX];
+ /* LINTED const castaway */
return (__aconst char *)__strerror(num, buf, sizeof(buf));
}