zot.cxx 315 B

123456789101112131415
  1. #include <stdio.h>
  2. #include <zot.hxx>
  3. #include <zot_custom.hxx>
  4. const char* zot_macro_dir_f();
  5. const char* zot_macro_tgt_f();
  6. const char* zot_pch_f();
  7. int main()
  8. {
  9. printf("[%s] [%s] [%s] [%s] [%s]\n", zot, zot_custom, zot_macro_dir_f(),
  10. zot_macro_tgt_f(), zot_pch_f());
  11. fflush(stdout);
  12. return 0;
  13. }