blob: db814dfd1678c0cfff9efc7095c5bcdbe8cf4fd6 [file] [log] [blame]
#include <inttypes.h>
struct S
{
int a;
int b;
int c;
};// end struct S
void
func(struct S *s)
{
s->a = 1;
}