blob: b7ce668d1c892fff7acaefdd711b01865b8ed1d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
This file is part of systemd.
Copyright 2014 Kay Sievers
***/
#include <sys/types.h>
int base_filesystem_create(const char *root, uid_t uid, gid_t gid);
|