summaryrefslogtreecommitdiff
path: root/os/src/close.c
blob: aa4002b6b7983f33bdba36b3b30da98ee6c41dbe (plain)
1
2
3
4
5
6
7
#include <reent.h>
#include <osdebug.h>

int _close_r(struct _reent * reent, int fd) {
    DBGOUT("_close_r(%p, %d)\r\n", reent, fd);
    return 0;
}