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