mirror of
https://github.com/wiiu-env/libmocha.git
synced 2026-09-08 02:05:09 -05:00
Add devoptab support to replace the libioushax devoptab
This commit is contained in:
11
source/devoptab/devoptab_fsa_fchmod.cpp
Normal file
11
source/devoptab/devoptab_fsa_fchmod.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "devoptab_fsa.h"
|
||||
#include "logger.h"
|
||||
#include <mutex>
|
||||
|
||||
int __fsa_fchmod(struct _reent *r,
|
||||
void *fd,
|
||||
mode_t mode) {
|
||||
// FSChangeMode on open files is not possible on Cafe OS
|
||||
r->_errno = ENOSYS;
|
||||
return -1;
|
||||
}
|
||||
Reference in New Issue
Block a user