mirror of
https://github.com/opnsense/src.git
synced 2026-03-02 05:13:58 -05:00
22 lines
164 B
C++
22 lines
164 B
C++
|
|
int global = 42;
|
||
|
|
|
||
|
|
int
|
||
|
|
bar(int x)
|
||
|
|
{
|
||
|
|
int y = 4*x + global;
|
||
|
|
return y;
|
||
|
|
}
|
||
|
|
|
||
|
|
int
|
||
|
|
foo(int x)
|
||
|
|
{
|
||
|
|
int y = 2*bar(3*x);
|
||
|
|
return y;
|
||
|
|
}
|
||
|
|
|
||
|
|
int
|
||
|
|
main()
|
||
|
|
{
|
||
|
|
return 0 * foo(1);
|
||
|
|
}
|