mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 18:02:17 -04:00
9 lines
78 B
C++
9 lines
78 B
C++
static int Static()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
int CallStaticA()
|
|
{
|
|
return Static();
|
|
}
|