mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-08 10:14:56 -05: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;
|
|
}
|