mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:04:16 +01:00
12 lines
210 B
C
12 lines
210 B
C
#include "devoptab_fs.h"
|
|
|
|
int
|
|
__wut_fs_statvfs(struct _reent *r,
|
|
const char *path,
|
|
struct statvfs *buf)
|
|
{
|
|
//TODO: FSGetFileSystemInfo
|
|
r->_errno = ENOSYS;
|
|
return -1;
|
|
}
|