mirror of
https://github.com/fluencelabs/musl
synced 2025-06-07 03:51:36 +00:00
8 lines
118 B
C
8 lines
118 B
C
|
#include <unistd.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int chroot(const char *path)
|
||
|
{
|
||
|
return syscall1(__NR_chroot, (long)path);
|
||
|
}
|