10 lines
72 B
C
10 lines
72 B
C
#pragma weak foo
|
|
|
|
void foo ();
|
|
|
|
void
|
|
ref ()
|
|
{
|
|
if (foo)
|
|
foo ();
|
|
}
|