shithub: drawcpu

ref: 46b0c36526f6004ba57adf9fe675313bae870836
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);
}