mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 22:21:52 +01:00
b4619783ca
stdint.h exists for a reason.
22 lines
364 B
C
22 lines
364 B
C
#include "devoptab_sd.h"
|
|
|
|
int
|
|
__wut_fs_statvfs(struct _reent *r,
|
|
const char *path,
|
|
struct statvfs *buf)
|
|
{
|
|
FSStatus rc;
|
|
char *path_fix = __wut_fs_fixpath(r, path);
|
|
|
|
if (!path_fix) {
|
|
r->_errno = ENOMEM;
|
|
return -1;
|
|
}
|
|
|
|
//TODO: FSGetFileSystemInfo
|
|
|
|
free(path_fix);
|
|
r->_errno = ENOSYS;
|
|
return -1;
|
|
}
|