]> andersk Git - splint.git/blame - test/tests2.2/offsetof.c
Fixed manual csvoverwrite.
[splint.git] / test / tests2.2 / offsetof.c
CommitLineData
885824d3 1typedef int U_type;
2static int x;
3
4void f3 (/*@null@*/ int *a1, int a2, int *a3, int a4);
5
6typedef struct {
7 char sf3 ;
8} some_struct ;
9
10void f2 (int n_bytes) ;
11
12void f1 (void)
13{
14 f2 ((int) offsetof (some_struct, sf3));
15 f3 (0, 0, (U_type *)&x, 0);
16}
17
18
19
This page took 0.071547 seconds and 5 git commands to generate.