Removed the "const" in the return value of strerror() to be POSIX compliant.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1810 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2002-11-01 02:58:34 +00:00
parent 03a92a2178
commit 350117ec51
+1 -1
View File
@@ -41,7 +41,7 @@ extern size_t strcspn(const char *string, const char *set);
extern int strcoll(const char *string1, const char *string2);
extern size_t strxfrm(char *string1, const char *string2, size_t length);
extern const char *strerror(int error);
extern char *strerror(int errorCode);
// ToDo: remove bzero(), bcopy() from here - we don't need those
// implementations anyway, since BeOS defines them as macros