code: 9ferno

ref: c88203b29aa39982ea701c083bb0d6bb2ea0483b
dir: /lib9/getwd-posix.c/

View raw version
#include "lib9.h"
#undef getwd
#include <unistd.h>

char *
infgetwd(char *buf, int size)
{
	return getcwd(buf, size);
}