musl/src/stdlib
Rich Felker 400c5e5c83 use restrict everywhere it's required by c99 and/or posix 2008
to deal with the fact that the public headers may be used with pre-c99
compilers, __restrict is used in place of restrict, and defined
appropriately for any supported compiler. we also avoid the form
[restrict] since older versions of gcc rejected it due to a bug in the
original c99 standard, and instead use the form *restrict.
2012-09-06 22:44:55 -04:00
..
abs.c initial check-in, version 0.5.0 2011-02-12 00:22:29 -05:00
atof.c initial check-in, version 0.5.0 2011-02-12 00:22:29 -05:00
atoi.c fix signed overflows at most-negative values in ato(i|l|ll) 2011-11-10 20:44:44 -05:00
atol.c fix signed overflows at most-negative values in ato(i|l|ll) 2011-11-10 20:44:44 -05:00
atoll.c fix signed overflows at most-negative values in ato(i|l|ll) 2011-11-10 20:44:44 -05:00
bsearch.c initial check-in, version 0.5.0 2011-02-12 00:22:29 -05:00
div.c initial check-in, version 0.5.0 2011-02-12 00:22:29 -05:00
ecvt.c add deprecated (removed from posix) [efg]cvt() functions 2012-02-06 01:14:23 -05:00
fcvt.c add deprecated (removed from posix) [efg]cvt() functions 2012-02-06 01:14:23 -05:00
gcvt.c add deprecated (removed from posix) [efg]cvt() functions 2012-02-06 01:14:23 -05:00
imaxabs.c initial check-in, version 0.5.0 2011-02-12 00:22:29 -05:00
imaxdiv.c initial check-in, version 0.5.0 2011-02-12 00:22:29 -05:00
labs.c initial check-in, version 0.5.0 2011-02-12 00:22:29 -05:00
ldiv.c initial check-in, version 0.5.0 2011-02-12 00:22:29 -05:00
llabs.c initial check-in, version 0.5.0 2011-02-12 00:22:29 -05:00
lldiv.c initial check-in, version 0.5.0 2011-02-12 00:22:29 -05:00
qsort.c avoid crashing when nel==0 is passed to qsort 2011-04-29 11:14:55 -04:00
strtod.c use restrict everywhere it's required by c99 and/or posix 2008 2012-09-06 22:44:55 -04:00
strtol.c use restrict everywhere it's required by c99 and/or posix 2008 2012-09-06 22:44:55 -04:00
wcstod.c use restrict everywhere it's required by c99 and/or posix 2008 2012-09-06 22:44:55 -04:00
wcstol.c use restrict everywhere it's required by c99 and/or posix 2008 2012-09-06 22:44:55 -04:00