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