shithub: drawcpu

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