renamed BaS sprintf to xsprintf to avoid conflicts in TOS programs

This commit is contained in:
Markus Fröschle
2018-02-24 20:23:14 +01:00
parent cb217e3e95
commit e31204235d
5 changed files with 3 additions and 484 deletions

View File

@@ -382,7 +382,7 @@ void xaddchar(int c)
*xstring++ = (char) c;
}
int sprintf(char *str, const char *format, ...)
int xsprintf(char *str, const char *format, ...)
{
va_list va;
va_start(va, format);