mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
16 lines
210 B
C
16 lines
210 B
C
|
/*
|
||
|
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/Types.h>
|
||
|
|
||
|
namespace Kernel {
|
||
|
|
||
|
void microseconds_delay(u32 microseconds);
|
||
|
|
||
|
}
|