diff options
Diffstat (limited to 'include/posix/driver/uptime.h')
-rw-r--r-- | include/posix/driver/uptime.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/posix/driver/uptime.h b/include/posix/driver/uptime.h deleted file mode 100644 index 93711b9..0000000 --- a/include/posix/driver/uptime.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef UPTIME_H -#define UPTIME_H - -#include <stdint.h> - -class Uptime { - private: - Uptime(const Uptime ©); - - public: - Uptime () {} - uint64_t get_s(); - uint64_t get_us(); - uint64_t get_cycles(); -}; - -extern Uptime uptime; - -#endif |