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

int _fstat_r(struct _reent * ptr, int fildes, struct stat * buf) {
    DBGOUT("_fstat_r(%p, %d, %p)\r\n", ptr, fildes, buf);
    return 0;
}