shithub: drawcpu

ref: 94cb585132563082a7db68d7a61bb59e885c5b20
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);
}