From: Rich Felker Date: Tue, 11 Sep 2018 19:13:35 +0000 (-0400) Subject: hide purely dependency-triggering functions in stdio __toread & __towrite X-Git-Tag: v1.1.21~107 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6d47488e8616dfc24e58aeb56db520ac7c80421e;p=oweals%2Fmusl.git hide purely dependency-triggering functions in stdio __toread & __towrite --- diff --git a/src/stdio/__toread.c b/src/stdio/__toread.c index 8f9f27bd..309ee6e8 100644 --- a/src/stdio/__toread.c +++ b/src/stdio/__toread.c @@ -13,7 +13,7 @@ int __toread(FILE *f) return (f->flags & F_EOF) ? EOF : 0; } -void __toread_needs_stdio_exit() +hidden void __toread_needs_stdio_exit() { __stdio_exit_needed(); } diff --git a/src/stdio/__towrite.c b/src/stdio/__towrite.c index 01998677..4c9c66ae 100644 --- a/src/stdio/__towrite.c +++ b/src/stdio/__towrite.c @@ -17,7 +17,7 @@ int __towrite(FILE *f) return 0; } -void __towrite_needs_stdio_exit() +hidden void __towrite_needs_stdio_exit() { __stdio_exit_needed(); }