blob: 2cf9d214d348406e9145786583a46109f2d686d7 [file] [log] [blame]
Manuel Klimeke8bd0db2015-11-05 15:24:47 +00001#ifndef PUBLIC_H
2#define PUBLIC_H
3
4#include "private.h"
5
6void pub() {
7 priv();
8}
9
10#endif
11