9 lines
81 B
C++
9 lines
81 B
C++
extern "C" int bar(void);
|
|
void baz();
|
|
|
|
int shared()
|
|
{
|
|
baz();
|
|
return bar();
|
|
}
|