mirror of
https://github.com/fluencelabs/musl
synced 2025-06-11 14:01:34 +00:00
12 lines
197 B
C
12 lines
197 B
C
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
int strerror_r(int err, char *buf, size_t buflen)
|
|
{
|
|
char *msg = strerror(err);
|
|
if (strlen(msg) >= buflen)
|
|
return ERANGE;
|
|
strcpy(buf, msg);
|
|
return 0;
|
|
}
|