Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sys_getcwd.c « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0fb205d7dcf5e0d88771ce79b762605c782ef66 (plain)
1
2
3
4
5
6
7
8
9
#include <machine/syscall.h>
#include <sys/types.h>

/* Stub.  */
char *
_getcwd(char *buf, size_t size)
{
  return NULL;
}