// Compile: cc -std=c23 test_7_18_stddef.c
#include <stddef.h>
#include <assert.h>

struct S { char c; int i; };
int main(void){
  assert(offsetof(struct S, i) >= sizeof(char));
  return 0;
}
