blob: 4fc573ffa73a138491485f8667d2637d1a55b4d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <sys/cdefs.h>
#include <sys/prctl_numbers.h>
#include <sys/types.h>
__BEGIN_DECLS
int prctl(int option, uintptr_t arg1, uintptr_t arg2);
__END_DECLS
|