mirror of
https://github.com/wiiu-env/libmocha.git
synced 2024-11-12 15:05:06 +01:00
12 lines
260 B
C++
12 lines
260 B
C++
#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;
|
|
}
|