summaryrefslogtreecommitdiff
path: root/os/src/fflush.c
blob: fc1bf63971c8c627ddbcc7a15d16fdbdc1ce5b9b (plain)
1
2
3
4
5
#include <stdio.h>

int fflush(FILE * file) {
    return _fflush_r(_impure_ptr, file);
}