diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-04 20:22:36 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-04 20:22:36 +0100 |
commit | 3c475f5027e870b19b9227375121b3b860eafb93 (patch) | |
tree | a72b0e4e991d07719e52539ac9275f9afa33c02d /os.h | |
parent | bf9ada75b941b40f30dfb25b063e064be062b7d8 (diff) |
Added os.cpp and base64.cpp
Diffstat (limited to 'os.h')
-rw-r--r-- | os.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +#pragma once + +#include <string> + +#define EXPORT __attribute__((visibility("default"))) + +namespace Reichwein::OS { + +EXPORT std::string uptime_host(); +EXPORT std::string uptime_process(); + +} // namespace |