kc3-lang/SDL/src/stdlib

Branch :


Log

Author Commit Date CI Message
58edac3e 2014-02-02 00:53:27 Fixed bug 2374 - Update copyright for 2014... Is it that time already??
35ab76d0 2013-12-11 21:17:24 Fixed bug 2050 - Obvious bugs in SDL_ltoa and SDL_lltoa pjz SDL_ltoa(-2147483648,s,10) only returns "-" because there is a bug in the code: if ( value < 0 ) { *bufp++ = '-'; value = -value; } but -(-2147483648) is still -2147483648 (0x80000000) as signed int (or long), so the following loop doesn't run at all. Similar bug are also in SDL_lltoa. BTW, there is no sanity check for radix.
d01ad02b 2013-12-09 15:17:20 Hook up SDL_acos and SDL_asin properly.
31caa22d 2013-12-09 13:30:35 Patched stdlib changes to compile on Windows.
f848adff 2013-11-29 10:06:08 Improve Android pause/resume behavior.
7e1289af 2013-11-24 23:56:17 Make internal SDL sources include SDL_internal.h instead of SDL_config.h The new header will include SDL_config.h, but allows for other global stuff.
e7693740 2013-11-24 23:35:38 Added SDL_vsscanf().