shithub: drawcpu

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