[BugFix] itoa conflicts with mingw rename to itoa_buf

Change-Id: Ife361f2fd8c8946db5bb2e0e58c0981b2ed3c5f3
This commit is contained in:
William Wilgus 2025-02-18 10:34:18 -05:00
parent ee4591d9e7
commit 50da856992
9 changed files with 45 additions and 46 deletions

View file

@ -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];