chdir.c 95 B

12345678
  1. #include "lib.h"
  2. PUBLIC int chdir(name)
  3. char *name;
  4. {
  5. return callm3(FS, CHDIR, 0, name);
  6. }