blob: b73422a6b703d9cef7b8b93f999615bf23bce31a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "__stdio.h" // for __FILE, _IO_ERR
#include <stdio.h>
int fflush(struct __FILE *stream)
{
int r;
flockfile(stream);
r = fflush_unlocked(stream);
funlockfile(stream);
return r;
}
|