7 lines
100 B
C
7 lines
100 B
C
#include <unistd.h>
|
|
#include "syscall.h"
|
|
|
|
int fchdir(int fd)
|
|
{
|
|
return syscall1(__NR_fchdir, fd);
|
|
}
|