From 3c475f5027e870b19b9227375121b3b860eafb93 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Wed, 4 Jan 2023 20:22:36 +0100 Subject: Added os.cpp and base64.cpp --- os.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 os.h (limited to 'os.h') diff --git a/os.h b/os.h new file mode 100644 index 0000000..fd88894 --- /dev/null +++ b/os.h @@ -0,0 +1,12 @@ +#pragma once + +#include + +#define EXPORT __attribute__((visibility("default"))) + +namespace Reichwein::OS { + +EXPORT std::string uptime_host(); +EXPORT std::string uptime_process(); + +} // namespace -- cgit v1.2.3