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

int fclose(FILE * fp) {
//    DBGOUT("fclose(%p)\r\n", fp);
    return _fclose_r(_impure_ptr, fp);
}