summaryrefslogtreecommitdiff
path: root/Kernel/Arch/CurrentTime.h
blob: b5ca112ebeabf9211af4ea1b4cea2427824138a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Types.h>

namespace Kernel {

typedef u64 (*fptr)();

fptr optional_current_time();

}