shithub: drawcpu

ref: 925ee107c28b82c79ac607a74fe9eb38568a209f
dir: /kern/getwd.c/

View raw version
#include <u.h>
#include <libc.h>

#undef getwd

char*
sysgetwd(char *s, int ns)
{
	return getcwd(s, ns);
}