summaryrefslogtreecommitdiff
path: root/include/string.h
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1998-07-26 13:34:18 +0000
committermycroft <mycroft@NetBSD.org>1998-07-26 13:34:18 +0000
commit4024f73640e189f79136a4679e1d9b2f61acdae3 (patch)
tree736bf25d4c1123d80bb3e8843c2ff768d5816f92 /include/string.h
parent907740b59130f51ed2281ca161f69e27731781c5 (diff)
const poisoning.
Diffstat (limited to 'include/string.h')
-rw-r--r--include/string.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/string.h b/include/string.h
index 1721d9d75b9..7ae2c6c1ba2 100644
--- a/include/string.h
+++ b/include/string.h
@@ -1,4 +1,4 @@
-/* $NetBSD: string.h,v 1.15 1998/05/06 20:17:55 kleink Exp $ */
+/* $NetBSD: string.h,v 1.16 1998/07/26 13:34:18 mycroft Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -63,7 +63,7 @@ int strcmp __P((const char *, const char *));
int strcoll __P((const char *, const char *));
char *strcpy __P((char *, const char *));
size_t strcspn __P((const char *, const char *));
-char *strerror __P((int));
+const char *strerror __P((int));
size_t strlen __P((const char *));
char *strncat __P((char *, const char *, size_t));
int strncmp __P((const char *, const char *, size_t));