aboutsummaryrefslogtreecommitdiff
path: root/src/linux/pivot_root.c
blob: 354e3591d2b437da183538d56b00f9516c6bf942 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "syscall.h"

int pivot_root(const char *new, const char *old)
{
	return syscall(SYS_pivot_root, new, old);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif