mirror of
https://github.com/fluencelabs/musl
synced 2025-06-15 16:01:41 +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);
|
||
|
}
|