提交 6d47488e 编写于 作者: R Rich Felker

hide purely dependency-triggering functions in stdio __toread & __towrite

上级 c04c6993
......@@ -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();
}
......@@ -17,7 +17,7 @@ int __towrite(FILE *f)
return 0;
}
void __towrite_needs_stdio_exit()
hidden void __towrite_needs_stdio_exit()
{
__stdio_exit_needed();
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册