shithub: drawcpu

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