DEBSOURCES
Skip Quicknav
sources / frama-c / 20220511-manganese-3 / tests / syntax / offsetof.c
12345678
#include "stddef.h" struct c {char ca;}; void main(void) { size_t S;; S = offsetof(struct c, ca); return; }