Skip to content

Instantly share code, notes, and snippets.

@zaftzaft
Created May 9, 2018 07:04
Show Gist options
  • Save zaftzaft/11a595daee29552f164173d9f60f3c29 to your computer and use it in GitHub Desktop.
Save zaftzaft/11a595daee29552f164173d9f60f3c29 to your computer and use it in GitHub Desktop.
#include <time.h>
#include <stdio.h>
int main(void) {
printf("time_t: %d\n", sizeof(time_t));
printf("long: %d\n", sizeof(long));
printf("timespec: %d\n", sizeof(struct timespec));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment