mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-05 00:35:15 -05:00
12 lines
211 B
C++
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;
|
|
}
|