ladybird/Userland/Libraries/LibC/sys/prctl.h

18 lines
260 B
C
Raw Normal View History

/*
* 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
2022-03-28 21:35:23 +02:00
int prctl(int option, ...);
__END_DECLS