mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
371 B
22 lines
371 B
#include <errno.h>
|
|
#include <string.h>
|
|
|
|
#define E(a,b) a,
|
|
static const unsigned char errid[] = {
|
|
#include "__strerror.h"
|
|
};
|
|
|
|
#undef E
|
|
#define E(a,b) b "\0"
|
|
static const char errmsg[] =
|
|
#include "__strerror.h"
|
|
;
|
|
|
|
char *strerror(int e)
|
|
{
|
|
const char *s;
|
|
int i;
|
|
for (i=0; errid[i] && errid[i] != e; i++);
|
|
for (s=errmsg; i; s++, i--) for (; *s; s++);
|
|
return (char *)s;
|
|
}
|
|
|