aboutsummaryrefslogtreecommitdiff
path: root/sys/linux/src/chdir.c
blob: d64446a50e0e55f12e4a63304de3d2d74bb73ed1 (plain)
1
2
3
4
5
6
7
8
#include "internal.h"

int
sys·chdir(char *path)
{
    intptr ret = syscall(·Chdir, path);
    return error(ret);
}