diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-11 12:32:46 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:34 -0400 |
commit | 7e399fabd3db2c528b5982803eeba2841f547695 (patch) | |
tree | 7dd5b5bf30e99dd0f622203017bc9364e8a74aab /src/internal/shgetc.h | |
parent | b6e59cd925cbe6c0f23cf46828d47e6e7edd17c9 (diff) | |
download | musl-7e399fabd3db2c528b5982803eeba2841f547695.tar.gz musl-7e399fabd3db2c528b5982803eeba2841f547695.tar.xz musl-7e399fabd3db2c528b5982803eeba2841f547695.zip |
apply hidden visibility to various remaining internal interfaces
Diffstat (limited to 'src/internal/shgetc.h')
-rw-r--r-- | src/internal/shgetc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/internal/shgetc.h b/src/internal/shgetc.h index 7beb8ce6..210f6468 100644 --- a/src/internal/shgetc.h +++ b/src/internal/shgetc.h @@ -1,7 +1,7 @@ #include "stdio_impl.h" -void __shlim(FILE *, off_t); -int __shgetc(FILE *); +hidden void __shlim(FILE *, off_t); +hidden int __shgetc(FILE *); #define shcnt(f) ((f)->shcnt + ((f)->rpos - (f)->rend)) #define shlim(f, lim) __shlim((f), (lim)) |