Renamed print functions

This commit is contained in:
Alex
2023-01-07 20:13:46 +02:00
parent 9a59137064
commit 7fd6532345
8 changed files with 45 additions and 45 deletions

View File

@ -11,7 +11,7 @@ EXTERNC void fprintf(FILE *stream, const char *Format, ...)
{
va_list args;
va_start(args, Format);
vprintf_(Format, args);
vprintf(Format, args);
va_end(args);
UNUSED(stream);
}
@ -19,7 +19,7 @@ EXTERNC void fprintf(FILE *stream, const char *Format, ...)
// TODO: Implement proper fputs
EXTERNC void fputs(const char *s, FILE *stream)
{
printf_("%s", s);
printf("%s", s);
UNUSED(stream);
}