mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:44:19 +01:00
12 lines
201 B
C
12 lines
201 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;
|
|
}
|