mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 01:35:49 -04:00
10 lines
132 B
C
10 lines
132 B
C
void f1(int &);
|
|
static void f2() {}
|
|
inline void foo() {
|
|
static int i;
|
|
f1(i);
|
|
f2();
|
|
}
|
|
inline void foo2() {
|
|
}
|
|
void foo_ext() {}
|