summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/emuctl.cpp
blob: 1107024241894d7b71367c87ccac8724e96e21b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <Kernel/Process.h>

namespace Kernel {

KResultOr<int> Process::sys$emuctl()
{
    return ENOSYS;
}

}