xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/diamond_left.h (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1 int top_left_before(void *);
2 
3 @import diamond_top;
4 
5 float left(float *);
6 
7 int top_left(char *c);
8 
9 int left_and_right(int*);
10 
11 
12