mirror of
https://github.com/fluencelabs/musl
synced 2025-06-04 10:31:37 +00:00
8 lines
116 B
C
8 lines
116 B
C
|
#include <unistd.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int chdir(const char *path)
|
||
|
{
|
||
|
return syscall1(__NR_chdir, (long)path);
|
||
|
}
|