mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 12:19:37 +03:00
17 lines
227 B
C
17 lines
227 B
C
|
/*
|
||
|
* Copyright (c) 2023, Liav A. <liavalb@hotmail.co.il>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/Types.h>
|
||
|
|
||
|
namespace Kernel {
|
||
|
|
||
|
void arch_specific_reboot();
|
||
|
void arch_specific_poweroff();
|
||
|
|
||
|
}
|