1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-03-18 17:10:52 +00:00
2019-01-10 21:38:10 -08:00

16 lines
309 B
C
Vendored

#include <stdio.h>
#include <time.h>
int main (int argc, char *argv[]) {
time_t rawtime;
struct tm *info;
time( &rawtime );
info = localtime( &rawtime );
struct tm info2;
time (&rawtime );
struct tm *p = localtime_r(&rawtime, &info2);
printf("localtime\n");
return(0);
}