2016-04-29 17:53:13 +03:00
|
|
|
#include <stdio.h>
|
2007-09-17 18:51:05 +04:00
|
|
|
#include <zot.hxx>
|
2007-12-21 20:22:12 +03:00
|
|
|
#include <zot_custom.hxx>
|
2007-09-17 18:51:05 +04:00
|
|
|
|
2008-05-14 19:55:12 +04:00
|
|
|
const char* zot_macro_dir_f();
|
|
|
|
const char* zot_macro_tgt_f();
|
|
|
|
|
2007-09-17 18:51:05 +04:00
|
|
|
int main()
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
printf("[%s] [%s] [%s] [%s]\n", zot, zot_custom, zot_macro_dir_f(),
|
|
|
|
zot_macro_tgt_f());
|
2007-09-17 18:51:05 +04:00
|
|
|
fflush(stdout);
|
|
|
|
return 0;
|
|
|
|
}
|