diff options
Diffstat (limited to 'Tests/PerConfig/perconfig.c')
-rw-r--r-- | Tests/PerConfig/perconfig.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/PerConfig/perconfig.c b/Tests/PerConfig/perconfig.c new file mode 100644 index 000000000..d942d4562 --- /dev/null +++ b/Tests/PerConfig/perconfig.c @@ -0,0 +1,8 @@ +#include "pcShared.h" +extern const char* pcStatic(void); +int main() +{ + pcStatic(); + pcShared(); + return 0; +} |