1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-13 19:22:09 +00:00
serenity/Kernel/Arch/aarch64/CurrentTime.cpp
Gunnar Beutner afa9060012 Kernel: Fix build error on AARCH64
This currently fails with:

error: #pragma once in main file [-Werror]
2022-10-15 06:01:45 +00:00

16 lines
221 B
C++

/*
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <Kernel/Arch/CurrentTime.h>
namespace Kernel {
fptr optional_current_time()
{
return nullptr;
}
}