wut/libraries/wutdevoptab/devoptab_fsa_statvfs.cpp
2023-04-16 18:17:04 +01:00

12 lines
211 B
C++

#include "devoptab_fsa.h"
int
__wut_fs_statvfs(struct _reent *r,
const char *path,
struct statvfs *buf)
{
//TODO: FSGetFileSystemInfo
r->_errno = ENOSYS;
return -1;
}