summaryrefslogtreecommitdiff
path: root/include/posix/driver/uptime.h
blob: c92ccf18c0bc32897d60bff803356109155e4356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef UPTIME_H
#define UPTIME_H

#include <stdint.h>

class Uptime {
	private:
		Uptime(const Uptime &copy);

	public:
		Uptime () {}
		uint64_t get();
};

extern Uptime uptime;

#endif