mailing list of musl libc
 help / color / mirror / code / Atom feed
54a9191e086a59a885048b19f31cc0e24d53235c blob 998 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
 
#include <errno.h>
#include <stddef.h>
#include <string.h>
#include "locale_impl.h"

/* mips has one error code outside of the 8-bit range due to a
 * historical typo, so we just remap it. */
#if EDQUOT==1133
#define EDQUOT_ORIG 1133
#undef  EDQUOT
#define EDQUOT 109
#endif

static const struct errmsgstr_t {
#define E(n, s) char str##n[sizeof(s)];
#include "__strerror.h"
#undef E
} errmsgstr = {
#define E(n, s) s,
#include "__strerror.h"
#undef E
};

static const unsigned short errmsgidx[] = {
#define E(n, s) [n] = offsetof(struct errmsgstr_t, str##n),
#include "__strerror.h"
#undef E
};

char *__strerror_l(int e, locale_t loc)
{
	const char *s;
#ifdef EDQUOT_ORIG
	if (e==EDQUOT) e=0;
	else if (e==EDQUOT_ORIG) e=EDQUOT;
#endif
	if (e < 0 || e >= sizeof(errmsgidx)/sizeof(errmsgidx[0])) e = 0;
	s = (char *)&errmsgstr + errmsgidx[e];
	return (char *)LCTRANS(s, LC_MESSAGES, loc);
}

char *strerror(int e)
{
	return __strerror_l(e, CURRENT_LOCALE);
}

weak_alias(__strerror_l, strerror_l);
debug log:

solving 54a9191e ...
found 54a9191e in https://inbox.vuxu.org/musl/20200303213348.10326-1-timo.teras@iki.fi/
found e3ed771a in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 e3ed771a719dba9eb26249d8c9f32e0e6f16a580	src/errno/strerror.c

applying [1/1] https://inbox.vuxu.org/musl/20200303213348.10326-1-timo.teras@iki.fi/
diff --git a/src/errno/strerror.c b/src/errno/strerror.c
index e3ed771a..54a9191e 100644

Checking patch src/errno/strerror.c...
Applied patch src/errno/strerror.c cleanly.

index at:
100644 54a9191e086a59a885048b19f31cc0e24d53235c	src/errno/strerror.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).