Renamed "snprintf_" to "snprintf"

This commit is contained in:
Alex
2023-02-10 05:25:34 +02:00
parent c968b6f2d5
commit fb97217927
2 changed files with 2 additions and 2 deletions

View File

@ -1569,7 +1569,7 @@ __no_instrument_function int sprintf(char *s, const char *format, ...)
return ret;
}
__no_instrument_function int snprintf_(char *s, size_t n, const char *format, ...)
__no_instrument_function int snprintf(char *s, size_t n, const char *format, ...)
{
va_list args;
va_start(args, format);