ref: 02fd0cf6dcc66cba2ce462de3db75726d8f7922c 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; }