brintos

brintos / llvm-project-archived public Read only

0
0
Text · 91 B · 2cf9d21 Raw
12 lines · c
1#ifndef PUBLIC_H2#define PUBLIC_H3 4#include "private.h"5 6void pub() {7  priv();8}9 10#endif11 12