mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 14:42:38 +01:00
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;
|
||
|
}
|