mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-09 07:19:21 +01:00
690bd6ccbd
This reverts commit 865af4609c49015c64f4092fd53315a1110b8042. Turns out it is for whole filesystem. oops.
11 lines
174 B
C
11 lines
174 B
C
#include "devoptab_fs.h"
|
|
|
|
int
|
|
__wut_fs_link(struct _reent *r,
|
|
const char *existing,
|
|
const char *newLink)
|
|
{
|
|
r->_errno = ENOSYS;
|
|
return -1;
|
|
}
|