[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / tools / llvm-cov / Inputs / directory_coverage / c0 / c1 / c2.h
blob483705194b3e97757f9753eb76ac4b5a842df687
1 int mul(int a, int b);
3 int div(int a, int b);
5 #ifdef DEF
6 int div(int a, int b) {
7 return a / b;
9 #endif