shithub: drawcpu

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