Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-06-01 | remove MJN only debug messages | Waldemar Brodkorb | |
2012-11-18 | drop support for pre ISO-C compilers | Mike Frysinger | |
This drops __signed, __volatile, and __const. Only the latter was used in the code base, and for uClibc, not consistently. Much of the code used plain "const" which meant "__const" was useless. Really, the point of this is to stay in sync with what glibc did. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2012-11-18 | Replace FSF snail mail address with URLs | Mike Frysinger | |
This matches a similar change made to glibc. No functional changes here. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2012-06-15 | stdlib.c: remove comment about _Exit, it is provided in _exit.c | Peter S. Mazinger | |
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2012-06-15 | do not define _ISOC99_SOURCE in specific files | Peter S. Mazinger | |
This should come properly from features.h or the build. Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2012-06-15 | stdlib.c: get rid of the compiler workarounds by using strong_alias_untyped | Peter S. Mazinger | |
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2012-06-15 | do not include xlocale.h, it is included by locale.h when needed | Peter S. Mazinger | |
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2012-05-03 | rpmatch: provide out-of-line implementation | Bernhard Reutner-Fischer | |
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2011-11-07 | stdlib: add qsort_r | Bernhard Reutner-Fischer | |
GNU extension like qsort but takes a 3 parameter comparision function. Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2011-03-09 | stdlib.c, _strtod.c, stdlib.h: remove unused hidden functions | Peter S. Mazinger | |
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> | |||
2011-03-09 | stdlib.c: remove duplicate libc_hidden_proto for strtoul/strtoul_l | Peter S. Mazinger | |
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> | |||
2010-12-01 | libc: fix strtoq | Natanael Copa | |
strtoq should always return a quad_t and be an alias of strtol on 64 bit and strtoll on 32 bit. Signed-off-by: Natanael Copa <natanael.copa@gmail.com> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2009-09-19 | remove a few more empty #if/#endif pairs | Denys Vlasenko | |
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||
2009-09-18 | convert // comments to /**/; remove empty #if/#endif pairs. no code changes | Denys Vlasenko | |
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||
2009-09-18 | trim Experimentally off and uncommented hidden | Bernhard Reutner-Fischer | |
sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2009-03-25 | - Add strtouq alias (to strtoul) for 64bit | Bernhard Reutner-Fischer | |
The strtouq alias was only available on 32bit, breaking compilation of stuff using strtouq on 64bit machines. At the same time use the correct return type (u_quad_t). Signed-of-by: Peter Korsgaard <jacmet@sunsite.dk> | |||
2009-01-21 | *: remove __UCLIBC_CURLOCALE_DATA, __UCLIBC_CURLOCALE_DATA.x | Denis Vlasenko | |
is always equivalent to __UCLIBC_CURLOCALE->x. remove typedef __uclibc_locale_t, it used only in a few places, it is lees confusing to use struct __uclibc_locale_struct everywhere. xlocale.h: hide __global_locale back under _LIBC, bug 53 is wrong in claiming it should be exported. Also hide under _LIBC: extern __locale_t __curlocale_var; extern __locale_t __curlocale(void); extern __locale_t __curlocale_set(__locale_t newloc); # define __UCLIBC_CURLOCALE # define __XL_NPP(N) # define __LOCALE_PARAM # define __LOCALE_ARG # define __LOCALE_PTR | |||
2008-11-20 | Last portion of libc_hidden_proto removal. | Denis Vlasenko | |
Appears to build fine (several .configs tried) | |||
2008-11-18 | libc_hidden_proto removal, a few more functions | Denis Vlasenko | |
2008-10-24 | - tidy up inline: | Bernhard Reutner-Fischer | |
ldso and syscalls are __always_inline (the latter would need more cleanup) | |||
2008-10-08 | - Fix strtol*() with xlocale (on e.g. x86_64) (closes #2544) | Bernhard Reutner-Fischer | |
2008-09-09 | Fix some locale multibyte tests failures ad below: | Carmelo Amoroso | |
libc/stdlib/_strtod.c -> tst_wcstod; libc/stdlib/stdlib.c -> tst_mblen, tst_mbtowc, tst_wctomb; libc/stdio/_scanf.c -> tst_swscanf; libc/string/strncmp.c -> tst_wcsncmp; libc/misc/wchar/wchar.c -> tst_mbrlen, tst_mbrtowc, tst_wcswidth. Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com> Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> | |||
2008-07-23 | - trim any trailing whitespace | Bernhard Reutner-Fischer | |
2008-06-02 | libc/stdlib/stdlib.c: fix whitespace damage. No code changes | Denis Vlasenko | |
(verified with objdump) | |||
2008-06-02 | fix bug 1577: '`' is not an acceptable digit for strto[u]l(). | Denis Vlasenko | |
Code size is not changed on i386. | |||
2008-05-30 | - try to pickup UINTMAX_MAX | Bernhard Reutner-Fischer | |
2008-05-30 | - Avoid warning about undefined preprocessor token. No obj-code changes. | Bernhard Reutner-Fischer | |
2006-03-22 | Correct build if UCLIBC_HAS_CTYPE_TABLES is not defined | Peter S. Mazinger | |
2006-03-10 | Remove all non-constant libc_hidden_data_def(), it is too unreliable, sorry, ↵ | Peter S. Mazinger | |
most of global data relocations are back | |||
2006-02-24 | Do not use __XL_NPP macro | Peter S. Mazinger | |
2006-02-24 | guard __ignore_x correctly, move undefs to their proper place, add ↵ | Peter S. Mazinger | |
prototypes. Should I do all the other *max aliases as well | |||
2006-02-15 | Reorganize a bit for IMA | Peter S. Mazinger | |
2006-01-22 | Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵ | Peter S. Mazinger | |
is a useless attempt | |||
2006-01-20 | fix building/warnings on 64bit arches | Mike Frysinger | |
2006-01-16 | Last relocs jump and global data, (even locales) that I could remove are ↵ | Peter S. Mazinger | |
gone from libc. The remaining are left as exercise for others ;-) | |||
2006-01-15 | make gcc4 happy w/ hidden_def/proto, correct some typos | Peter S. Mazinger | |
2006-01-14 | make DODEBUG=y happy, update sysdeps/common/* copyright | Peter S. Mazinger | |
2006-01-14 | Correct libc_hidden_proto | Peter S. Mazinger | |
2006-01-14 | Correct atoi() | Peter S. Mazinger | |
2006-01-14 | hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵ | Peter S. Mazinger | |
missing headers, other jump relocs removed | |||
2005-12-16 | Macros are no good for jump relocs, hack to get rid of one introduced my new ↵ | Peter S. Mazinger | |
regex code | |||
2005-12-16 | Convert all the rest, remove isxupper/isxlower, if someone objects, I'll add ↵ | Peter S. Mazinger | |
it back | |||
2005-12-08 | Use __strtod | Peter S. Mazinger | |
2005-12-08 | Implement __strto* __wcsto* and hide _stdlib_wcsto* | Peter S. Mazinger | |
2005-12-07 | Hide more | Peter S. Mazinger | |
2005-12-07 | Hide *clnt|pmap|svc* and some rpc. inet/rpc is full of relocs ... | Peter S. Mazinger | |
2005-12-04 | More hiding, 300 left | Peter S. Mazinger | |
2005-11-29 | Hiding again | Peter S. Mazinger | |
2005-10-21 | Kill warnings if IMA compiling | Peter S. Mazinger | |
2005-09-22 | weaks moved after the related function so gcc4 won't warn | Peter S. Mazinger | |