DEBSOURCES
Skip Quicknav
sources / frama-c / 20161101%2Bsilicon%2Bdfsg-5 / tests / syntax / offsetof.c
12345678
#include "share/libc/stddef.h" struct c {char ca;}; void main(void) { size_t S;; S = offsetof(struct c, ca); return; }