llvm-project/lldb/test/Shell/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.h

13 lines
138 B
C

#ifndef FUNCTION_LEVEL_LINKING_TEST_H
#define FUNCTION_LEVEL_LINKING_TEST_H
int bar() {
return 0;
}
int baz() {
return 0;
}
#endif