#include "globals_initialization.h"
extern const int a, b, c;
extern const struct SomeStruct ss0;
extern const struct StructWithPointers swp0, swp1;
extern const struct StructWithPointers crossMod0;
const int x = 511;
const struct SomeStruct ss2 = { x * 3, x + 4, 1 };
const struct StructWithPointers swp2 = { x, &c, &ss2, &swp0 };
const struct StructWithPointers swp3 = { x - 2, &swp0.field1, &ss2, &swp1 };
const struct StructWithPointers crossMod1 = { 2, &crossMod0.field1, &ss0, &crossMod0};
const struct StructWithFunctionPointer swfp2 = { 21, &bar, (void*) &foo };