aboutsummaryrefslogtreecommitdiff
path: root/2025-linuxdays/static_assert.c
blob: 23ffbc8cf852cf2898987f696abf4f12d2d087ba (plain)
1
2
3
4
5
6
7
8
9
#include <stdint.h>
#include <stdio.h>

static_assert(sizeof(intmax_t) >= 16, "Platform must support 128bit integers");

int main(int argc, char *argv[]) {
  printf("In the main\n");
  return 0;
}