ladybird/Userland/Libraries/LibC/sys/prctl.h
2022-03-29 09:10:34 -07:00

17 lines
260 B
C

/*
* 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, ...);
__END_DECLS