mirror of
https://github.com/systemd/systemd.git
synced 2026-07-12 18:44:14 +00:00
10 lines
355 B
C
10 lines
355 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "shared-forward.h"
|
|
|
|
int userns_chown_at(int fd, const char *fname, uid_t uid, gid_t gid, int flags);
|
|
int userns_lchown(const char *p, uid_t uid, gid_t gid);
|
|
int userns_mkdir(const char *root, const char *path, mode_t mode, uid_t uid, gid_t gid);
|
|
int make_run_host(const char *root);
|