ref: 408f1beaa2f4ea5de1657cfdc4a9062aeeaeab07 dir: /sys/src/ape/lib/ap/plan9/chdir.c/
#include "lib.h" #include <unistd.h> #include "sys9.h" int chdir(const char *f) { int n; n = _CHDIR(f); if(n < 0) _syserrno(); return n; }