1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:07:44 +00:00

Kernel/riscv64: Stub out optional_current_time

This function is used in TimeManagement.cpp
This commit is contained in:
Sönke Holz 2023-12-07 17:34:33 +01:00 committed by Andrew Kaster
parent 4292b0ead7
commit 9e4286d782
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,16 @@
/*
* 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;
}
}