From f0d106a3b9214d4453b2921f47f58d389a0fe86f Mon Sep 17 00:00:00 2001 From: DH Date: Sun, 9 Jul 2023 14:03:41 +0300 Subject: [PATCH] Missed time.hpp --- orbis-kernel/include/orbis/time.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 orbis-kernel/include/orbis/time.hpp diff --git a/orbis-kernel/include/orbis/time.hpp b/orbis-kernel/include/orbis/time.hpp new file mode 100644 index 000000000..8a566b0fb --- /dev/null +++ b/orbis-kernel/include/orbis/time.hpp @@ -0,0 +1,10 @@ +#pragma once + +#include "orbis-config.hpp" + +namespace orbis { +struct timespec { + uint64_t sec; + uint64_t nsec; +}; +} // namespace orbis