More stdlib; fixed another bug in higher-order functions

This commit is contained in:
Dmitry Boulytchev 2020-01-15 05:24:35 +03:00
parent 2594f7a8dc
commit 5dcc3a97b0
5 changed files with 469 additions and 457 deletions

View file

@ -900,6 +900,8 @@ extern void Lprintf (char *s, ...) {
if (vprintf (s, args) < 0) {
failure ("fprintf (...): %s\n", strerror (errno));
}
fflush (stdout);
}
extern FILE* Lfopen (char *f, char *m) {