1 2 3 4 5 6 7 8 9 10
#include <LibC/time.h> #include <LibC/stdio.h> int main(int c, char** v) { time_t now = time(nullptr); printf("%u\n", now); return 0; }