summaryrefslogtreecommitdiff
path: root/userspace/date.c
blob: 64b8dfcb79357883ee53e61d0571940f596a9115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>

int main(int argc, char **argv) 
{
     time_t ltime;
     time(&ltime); 
     printf("%s", ctime(&ltime));
     return 0;
}