musl - an implementation of the standard library for Linux-based systems
Go to file
Rich Felker 16319a5df9 make setlocale return a single name for LC_ALL if all categories match
when called for LC_ALL, setlocale has to return a string representing
the state of all locale categories. the simplest way to do this was to
always return a delimited list of values for each category, but that's
not friendly in the fairly common case where all categories have the
same setting. He X proposed a patch to check for this case and return
a single name; this patch is a simplified approach to do the same.
2017-03-21 08:54:19 -04:00
arch s390x: fix fpreg_t and remove unused per_struct 2017-03-15 20:25:45 -04:00
crt add s390x port 2016-11-11 23:06:21 -05:00
dist
include update tcp_info struct to linux v4.9 2016-12-29 22:11:01 -05:00
ldso fix dlopen/dlsym regression opening libs already loaded at startup 2017-03-21 08:39:37 -04:00
src make setlocale return a single name for LC_ALL if all categories match 2017-03-21 08:54:19 -04:00
tools
.gitignore
configure when building for arm as thumb2 code, also request assembly as thumb 2016-12-19 21:53:33 -05:00
COPYRIGHT
INSTALL
Makefile
README
VERSION release 1.1.16 2016-12-31 22:27:17 -05:00
WHATSNEW release 1.1.16 2016-12-31 22:27:17 -05:00

    musl libc

musl, pronounced like the word "mussel", is an MIT-licensed
implementation of the standard C library targetting the Linux syscall
API, suitable for use in a wide range of deployment environments. musl
offers efficient static and dynamic linking support, lightweight code
and low runtime overhead, strong fail-safe guarantees under correct
usage, and correctness in the sense of standards conformance and
safety. musl is built on the principle that these goals are best
achieved through simple code that is easy to understand and maintain.

The 1.1 release series for musl features coverage for all interfaces
defined in ISO C99 and POSIX 2008 base, along with a number of
non-standardized interfaces for compatibility with Linux, BSD, and
glibc functionality.

For basic installation instructions, see the included INSTALL file.
Information on full musl-targeted compiler toolchains, system
bootstrapping, and Linux distributions built on musl can be found on
the project website:

    http://www.musl-libc.org/