DEBSOURCES
Skip Quicknav
sources / splint / 3.1.2.dfsg1-4 / test / tests2.2 / sizeofarray.c
1234567891011
int f (int x[32]) { int a[23]; if (sizeof(x) == 3) { return 1; } return sizeof(a); }