shithub: drawcpu

ref: 76214d37db206e5244c337da917316da53afd2a8
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);
}