mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
12 lines
100 B
C++
12 lines
100 B
C++
int bar ()
|
|
{
|
|
return 5;
|
|
}
|
|
int foo ()
|
|
{
|
|
return bar() + 5;
|
|
}
|
|
int main ()
|
|
{
|
|
return foo();
|
|
}
|