summaryrefslogtreecommitdiff
path: root/os/src/fflush.c
blob: 84e2c671c44ec6d863b81ebf2c3e172b067ed2d4 (plain)
1
2
3
4
5
6
7
#include <stdio.h>
#include "osdebug.h"

int fflush(FILE * file) {
//    DBGOUT("fflush(%p)\r\n", file);
    return _fflush_r(_impure_ptr, file);
}