[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

@ -70,6 +70,6 @@ static inline char * strmemcpy(char *dst, const char *src, size_t len)
strmemdupa(__s, MIN(__n, __len)); })
#endif /* strndupa */
char *itoa(char *buf, size_t bufsz, long int i); /* Not std */
char *itoa_buf(char *buf, size_t bufsz, long int i);
#endif /* STRING_EXTRA_H */