mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
[BugFix] itoa conflicts with mingw rename to itoa_buf
Change-Id: Ife361f2fd8c8946db5bb2e0e58c0981b2ed3c5f3
This commit is contained in:
parent
ee4591d9e7
commit
50da856992
9 changed files with 45 additions and 46 deletions
|
|
@ -22,7 +22,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|||
|
||||
#define INT_DIGITS 19 /* enough for 64 bit integer */
|
||||
|
||||
char *itoa(char *buf, size_t bufsz, long int i)
|
||||
char *itoa_buf(char *buf, size_t bufsz, long int i)
|
||||
{
|
||||
/* Room for INT_DIGITS digits, - and '\0' */
|
||||
static char intbuf[INT_DIGITS + 2];
|
||||
Loading…
Add table
Add a link
Reference in a new issue