diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-09 00:53:11 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:31 -0400 |
commit | 50a298ea3b122efbb31e7674a20e6c7dc30ca1dc (patch) | |
tree | e4531801a4d1a633713fe52dc39347873c7b8f2d /src/stdio/__toread.c | |
parent | 7dc8df56c16f0fd9d791511e54d4590fb5a2dbf3 (diff) | |
download | musl-50a298ea3b122efbb31e7674a20e6c7dc30ca1dc.tar.gz musl-50a298ea3b122efbb31e7674a20e6c7dc30ca1dc.tar.xz musl-50a298ea3b122efbb31e7674a20e6c7dc30ca1dc.zip |
move __stdio_exit_needed to stdio_impl.h
this functions is glue for linking dependency logic.
Diffstat (limited to 'src/stdio/__toread.c')
-rw-r--r-- | src/stdio/__toread.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/stdio/__toread.c b/src/stdio/__toread.c index 35f67b8f..8f9f27bd 100644 --- a/src/stdio/__toread.c +++ b/src/stdio/__toread.c @@ -13,8 +13,6 @@ int __toread(FILE *f) return (f->flags & F_EOF) ? EOF : 0; } -void __stdio_exit_needed(void); - void __toread_needs_stdio_exit() { __stdio_exit_needed(); |