mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
10 lines
125 B
C
10 lines
125 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
|
|
int main(void) {
|
|
printf("%ld\n", sizeof(time_t));
|
|
return 0;
|
|
}
|
|
|