#include #include void a() {} void b() {} void c() {} void d() {} void e() {} void helper2() { c(); string_sharectx c = {NEW_SHARING}; d(); } void helper1() { a(); string_sharectx c = {NO_SHARING}; b(); helper2(); e(); } int main() { helper1(); }