mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 17:51:53 +01:00
12 lines
200 B
C
12 lines
200 B
C
#include "devoptab_sd.h"
|
|
|
|
int
|
|
__wut_fs_fchmod(struct _reent *r,
|
|
void *fd,
|
|
mode_t mode)
|
|
{
|
|
//TODO: FSChangeMode and FSStatFile?
|
|
r->_errno = ENOSYS;
|
|
return -1;
|
|
}
|