Serenity Operating System
1/*
2 * Copyright (c) 2021, the SerenityOS developers.
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#include <AK/Format.h>
8#include <sys/resource.h>
9
10extern "C" {
11
12int getpriority([[maybe_unused]] int which, [[maybe_unused]] id_t who)
13{
14 dbgln("FIXME: Implement getpriority()");
15 return -1;
16}
17
18int setpriority([[maybe_unused]] int which, [[maybe_unused]] id_t who, [[maybe_unused]] int value)
19{
20 dbgln("FIXME: Implement setpriority()");
21 return -1;
22}
23}