version.c 201 B

1234567891011121314151617
  1. #include "config.h"
  2. #ifndef VERSION
  3. #define VERSION "0.0"
  4. #endif
  5. char markdown_version[] = VERSION
  6. #if 4 != 4
  7. " TAB=4"
  8. #endif
  9. #if USE_AMALLOC
  10. " DEBUG"
  11. #endif
  12. #if WITH_LATEX
  13. " LATEX"
  14. #endif
  15. ;