shithub: drawcpu

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