DEBSOURCES
Skip Quicknav
sources / splint / 3.1.2.dfsg1-1 / test / tests2.2 / break.c
1234567891011
int f (/*@null@*/ int *x) { while (3 > 4) { if (x == NULL) continue; *x = 3; } *x = 3; return 5; }