diff options
author | Jakob Kaivo <jkk@ung.org> | 2024-06-05 15:07:06 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2024-06-05 15:07:06 -0400 |
commit | 1161633db54ce8fd1180649f52909390a2986213 (patch) | |
tree | 81eb6390d21e2ad435595f534664121b181a5bb5 /src/stdio/fflush.c | |
parent | 66d9ce2cdab4e989e7b4fbab17ba7f4aa4a4af70 (diff) |
rename all per-header internal structs to __<header>_h
Diffstat (limited to 'src/stdio/fflush.c')
-rw-r--r-- | src/stdio/fflush.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/fflush.c b/src/stdio/fflush.c index a1e984f9..010e2e43 100644 --- a/src/stdio/fflush.c +++ b/src/stdio/fflush.c @@ -13,7 +13,7 @@ int fflush(FILE *stream) if (stream == NULL) { size_t i; for (i = 0; i < FOPEN_MAX; i++) { - stream = __stdio.FILES + i; + stream = __stdio_h.FILES + i; if (stream->write && (stream->operation != OP_INPUT)) { fflush(stream); } |