Wrappers.h 303 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Error.h>
  8. namespace System {
  9. ErrorOr<void> pledge(StringView promises, StringView execpromises);
  10. ErrorOr<void> unveil(StringView path, StringView permissions);
  11. }