diff options
Diffstat (limited to 'code/fe310/bsp/gloss/sys_link.c')
-rw-r--r-- | code/fe310/bsp/gloss/sys_link.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/code/fe310/bsp/gloss/sys_link.c b/code/fe310/bsp/gloss/sys_link.c new file mode 100644 index 0000000..40d5912 --- /dev/null +++ b/code/fe310/bsp/gloss/sys_link.c @@ -0,0 +1,7 @@ +#include <errno.h> + +int _link(const char *old_name, const char *new_name) +{ + errno = ENOSYS; + return -1; +} |