shithub: drawcpu

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