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