summaryrefslogtreecommitdiff
path: root/gnu/lib/libg++/g++-include
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1993-09-27 18:25:49 +0000
committerjtc <jtc@NetBSD.org>1993-09-27 18:25:49 +0000
commit2d074d37f663d7568d18cdebe9310c4e7c24a2a1 (patch)
treeed9543607f2b6b17a240af0de0be1ab6558e6a6b /gnu/lib/libg++/g++-include
parent72d43b1ecb94c9db154e83529b3628536988ba83 (diff)
Include prototype for strerror().
Diffstat (limited to 'gnu/lib/libg++/g++-include')
-rw-r--r--gnu/lib/libg++/g++-include/string.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/lib/libg++/g++-include/string.h b/gnu/lib/libg++/g++-include/string.h
index af2f3d82028..e03adb7d3c0 100644
--- a/gnu/lib/libg++/g++-include/string.h
+++ b/gnu/lib/libg++/g++-include/string.h
@@ -1,4 +1,4 @@
-// $Id: string.h,v 1.2 1993/08/02 17:22:18 mycroft Exp $
+// $Id: string.h,v 1.3 1993/09/27 18:25:49 jtc Exp $
#ifndef _string_h
#define _string_h 1
@@ -22,6 +22,7 @@ int strcoll(const char*, const char*);
char* strcpy(char*, const char*);
size_t strcspn(const char*, const char*);
char* strdup(const char*);
+char* strerror(int);
// NOTE: If you get a error message from g++ that this declaration
// conflicts with a <built-in> declaration of strlen(), that usually
// indicates that __SIZE_TYPE__ is incorrectly defined by gcc.