mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 17:41:49 +01:00
11 lines
174 B
C
11 lines
174 B
C
#include "devoptab_sd.h"
|
|
|
|
int
|
|
__wut_fs_link(struct _reent *r,
|
|
const char *existing,
|
|
const char *newLink)
|
|
{
|
|
r->_errno = ENOSYS;
|
|
return -1;
|
|
}
|