From f175a63eaa689585e6e56082b345a97657d08dec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 5 Nov 2003 23:52:25 +0000 Subject: [PATCH] Added prototype for strerror_r(). git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5260 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/string.h | 1 + 1 file changed, 1 insertion(+) diff --git a/headers/posix/string.h b/headers/posix/string.h index 8329d25dad..b59e237eb3 100644 --- a/headers/posix/string.h +++ b/headers/posix/string.h @@ -45,6 +45,7 @@ extern int strcoll(const char *string1, const char *string2); extern size_t strxfrm(char *string1, const char *string2, size_t length); extern char *strerror(int errorCode); +extern int strerror_r(int errorCode, char *buffer, size_t bufferSize); // ToDo: remove bzero(), bcopy() from here - we don't need those // implementations anyway, since BeOS defines them as macros