summary refs log blame commit diff stats
path: root/tools/detect/timesize.c
blob: 35fc909826f96e1f6f5fc49d9ddce548f6131ead (plain) (tree)
1
2
3
4
5
6
7
8
9








                                  
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main(void) {
  printf("%ld\n", sizeof(time_t));
  return 0;
}