xref: /aosp_15_r20/external/clang/test/Modules/Inputs/private3/public.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 #ifndef PUBLIC_H
2 #define PUBLIC_H
3 
4 #include "private.h"
5 
pub()6 void pub() {
7   priv();
8 }
9 
10 #endif
11 
12