1
0
mirror of https://github.com/ioacademy-jikim/kernel synced 2025-06-07 07:56:14 +00:00
kernel/01_day/time.c
Your Name 74a4a217c7 6
2017-11-13 15:57:49 +09:00

10 lines
122 B
C

#include <time.h>
#include <stdio.h>
int main()
{
time_t now;
now = time(0);
printf("now = %lu\n", now );
return 0;
}