code: purgatorio

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