summaryrefslogtreecommitdiff
path: root/code/fe310/gloss/sys_getcwd.c
blob: 82e8404ee8eb15376b1a2b5e4b4ef0faa7d3af96 (plain)
1
2
3
4
5
6
7
8
#include <errno.h>

char *
_getcwd(char *buf, size_t size)
{
  errno = -ENOSYS;
  return NULL;
}