Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2012-09-02 | avoid "inline" in public headers for strict c89 compatibility | Rich Felker | -12/+7 | |
while musl itself requires a c99 compiler, some applications insist on being compiled with c89 compilers, and use of "inline" in the headers was breaking them. much of this had been avoided already by just skipping the inline keyword in pre-c99 compilers or modes, but this new unified solution is cleaner and may/should result in better code generation in the default gcc configuration. | ||||
2012-05-06 | take byte order from gcc if gcc has defined it | Rich Felker | -0/+4 | |
this only works with gcc 4.6 and later, but it allows us to support non-default endianness on archs like arm, mips, ppc, etc. that can do both without having separate header sets for both variants, and it saves one #include even on fixed-endianness archs like x86. | ||||
2012-05-03 | uglify headers for the sake of junk that compiles with gcc -std=c89/-ansi | Rich Felker | -3/+12 | |
2012-04-22 | fix breakage in endian.h | Rich Felker | -1/+1 | |
2012-04-22 | add some ugly byte swapping cruft in endian.h | Rich Felker | -0/+59 | |
2011-02-12 | initial check-in, version 0.5.0v0.5.0 | Rich Felker | -0/+17 | |