Added prototype for strerror_r().

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5260 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-11-05 23:52:25 +00:00
parent 9f14e64533
commit f175a63eaa

View File

@ -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