~ubuntu-branches/ubuntu/trusty/eglibc/trusty-proposed

1
2
3
4
5
6
7
8
9
10
extern void a_function (void);
extern void b_function (void);
extern void c_function (void);

void
a_function (void)
{
  b_function ();
  c_function ();
}