shithub: drawcpu

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