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