xref: /llvm-project/clang/test/CXX/module/module.unit/p7/Inputs/h1.h (revision e587372f85105b85ae790fbe129b5d609d6dfb76)
1 extern "C" void foo();
2 extern "C" {
3 void bar();
4 int baz();
5 double double_func();
6 }
7 
8 extern "C++" {
9 void bar_cpp();
10 int baz_cpp();
11 double double_func_cpp();
12 }
13