mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-09 06:30:39 +01:00
690bd6ccbd
This reverts commit 865af4609c49015c64f4092fd53315a1110b8042. Turns out it is for whole filesystem. oops.
12 lines
200 B
C
12 lines
200 B
C
#include "devoptab_fs.h"
|
|
|
|
int
|
|
__wut_fs_fchmod(struct _reent *r,
|
|
void *fd,
|
|
mode_t mode)
|
|
{
|
|
//TODO: FSChangeMode and FSStatFile?
|
|
r->_errno = ENOSYS;
|
|
return -1;
|
|
}
|