This commit is contained in:
2025-07-13 18:57:18 -04:00
parent 174e80f4f8
commit d6cf8c5dd6
6 changed files with 8 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ int printfn(char *format, ...) {
int len;
va_list args;
va_start(args, format);
printf("yait: ");
fprintf(stderr, "yait: ");
len = vfprintf(stderr, format, args);
putchar('\n');
va_end(args);