mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-10 15:56:08 +00:00
11 lines
97 B
C++
11 lines
97 B
C++
#include "other.h"
|
|
|
|
extern "C" void some_func();
|
|
|
|
void
|
|
Other::DoSomething()
|
|
{
|
|
some_func();
|
|
}
|
|
|