summaryrefslogtreecommitdiff
path: root/fw/fe310/bsp/gloss/sys_unlink.c
blob: b369d2017a11495540c99942880062027f642a08 (plain)
1
2
3
4
5
6
7
8
#include <errno.h>

int
_unlink(const char *name)
{
  errno = ENOSYS;
  return -1;
}