xref: /third_party/musl/porting/uniproton/kernel/src/stdio/clearerr.c (revision 570af302)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/musl/porting/uniproton/kernel/src/stdio/
1#include "stdio_impl.h"
2
3void clearerr(FILE *f)
4{
5	FLOCK(f);
6	f->flags &= ~(F_EOF|F_ERR);
7	FUNLOCK(f);
8}
9
10weak_alias(clearerr, clearerr_unlocked);
11

Indexes created Thu Nov 07 10:32:03 CST 2024