[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / clang-tools-extra / test / modularize / Inputs / SomeDecls.h
blob8892b650c1812328a92f2326ac67758579a94161
1 // Declare a couple of functions - no modules problems.
3 void FuncOne();
5 int FuncTwo(int arg);
7 void FuncOverload(int arg) {}
8 void FuncOverload(char *arg) {}
10 namespace Namespace1 {
11 void FuncNameSpace() {}
14 namespace Namespace2 {
15 void FuncNameSpace() {}