blob: 5cf7eb1a7c5c2731b66e1473f7f24de99ca93f71 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
Copyright 2012 Harald Hoyer
***/
#include <stdbool.h>
int switch_root(const char *new_root, const char *oldroot, bool detach_oldroot, unsigned long mountflags);
|