11 lines
97 B
C++
11 lines
97 B
C++
|
#include "other.h"
|
||
|
|
||
|
extern "C" void some_func();
|
||
|
|
||
|
void
|
||
|
Other::DoSomething()
|
||
|
{
|
||
|
some_func();
|
||
|
}
|
||
|
|