Files
musl/src/string/strerror_r.c

12 lines
197 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#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;
}