#ifndef CHDIR_H #define CHDIR_H #include "syscalls.h" static int chdir(const char *filename) { return syscall(CHDIR, filename); } #endif