summaryrefslogtreecommitdiff
path: root/userspace/date.c
blob: b2c497eaaf977b06e6421d5099f12a7b58300045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
}