#include #include int main() { struct timespec tp; clock_gettime(CLOCK_MONOTONIC, &tp); // On Luna, CLOCK_MONOTONIC starts at boot. printf("up for %ld seconds\n", tp.tv_sec); }