Home | History | Annotate | Download | only in private3
      1 #ifndef PUBLIC_H
      2 #define PUBLIC_H
      3 
      4 #include "private.h"
      5 
      6 void pub() {
      7   priv();
      8 }
      9 
     10 #endif
     11 
     12