mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-22 11:02:53 +00:00
16 lines
303 B
C++
16 lines
303 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Error.h>
|
|
|
|
namespace System {
|
|
|
|
ErrorOr<void> pledge(StringView promises, StringView execpromises);
|
|
ErrorOr<void> unveil(StringView path, StringView permissions);
|
|
|
|
}
|