diff options
Diffstat (limited to 'src/stdio')
-rw-r--r-- | src/stdio/__toread.c | 2 | ||||
-rw-r--r-- | src/stdio/__towrite.c | 2 |
2 files changed, 0 insertions, 4 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(); diff --git a/src/stdio/__towrite.c b/src/stdio/__towrite.c index b022cbca..01998677 100644 --- a/src/stdio/__towrite.c +++ b/src/stdio/__towrite.c @@ -17,8 +17,6 @@ int __towrite(FILE *f) return 0; } -void __stdio_exit_needed(void); - void __towrite_needs_stdio_exit() { __stdio_exit_needed(); |