| 2 | #include <ctime.hpp> |
| 3 | |
| 4 | extern "C" void _start() { |
| 5 | std::cout << "The time since boot is: " << std::time(nullptr) << " microseconds." << std::endl; |
| 6 | std::cout << "The time this app has been running is: " << std::clock() << " microseconds." << std::endl; |
| 7 | } |