mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 17:21:52 +01:00
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;
|
|
}
|