ladybird/Userland/Libraries/LibC/sys/archctl.h
Sönke Holz 57f4f8caf8 Kernel+LibC: Introduce new archctl syscall
This syscall will be used for architecture-specific operations.
2024-04-19 16:46:47 -06:00

17 lines
268 B
C

/*
* Copyright (c) 2024, Sönke Holz <sholz8530@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <Kernel/API/archctl_numbers.h>
#include <sys/cdefs.h>
#include <sys/types.h>
__BEGIN_DECLS
int archctl(int option, ...);
__END_DECLS