mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 23:35:07 +00:00
16 lines
223 B
C++
16 lines
223 B
C++
/*
|
|
* Copyright (c) 2023, Sönke Holz <sholz8530@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Kernel/Arch/CurrentTime.h>
|
|
|
|
namespace Kernel {
|
|
|
|
fptr optional_current_time()
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
}
|