summaryrefslogtreecommitdiffhomepage
path: root/os.h
blob: fd88894653b7b878b59574fa81941fa6bd76ea5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <string>

#define EXPORT __attribute__((visibility("default")))

namespace Reichwein::OS {

EXPORT std::string uptime_host();
EXPORT std::string uptime_process();

} // namespace