]> git.lizzy.rs Git - plan9front.git/blob - sys/src/ape/lib/ap/plan9/chdir.c
Import sources from 2011-03-30 iso image
[plan9front.git] / sys / src / ape / lib / ap / plan9 / chdir.c
1 #include "lib.h"
2 #include <unistd.h>
3 #include "sys9.h"
4
5 int
6 chdir(const char *f)
7 {
8         int n;
9
10         n = _CHDIR(f);
11         if(n < 0)
12                 _syserrno();
13         return n;
14 }