version.h 529 B

12345678910111213141516171819202122
  1. #ifndef __VERSION_H
  2. #define __VERSION_H
  3. #define __TIGCC__ 0
  4. #define __TIGCC_MINOR__ 96
  5. #define __TIGCC_SP__ 0
  6. #define __TIGCC_BETA__ 10
  7. #define __TIGCC_VERSION__ 96
  8. #define __TIGCC_VERSION_STRING__ "TIGCC0.96Beta10"
  9. #define __TIGCCLIB__ 2
  10. #define __TIGCCLIB_MINOR__ 72
  11. #define __TIGCCLIB_SP__ 0
  12. #define __TIGCCLIB_VERSION__ 272
  13. #define __TIGCCLIB_VERSION_STRING__ "LIB2.72"
  14. #ifdef EMBED_VERSION_STRINGS
  15. char __tigcc_version__[]=__TIGCC_VERSION_STRING__;
  16. char __tigcclib_version__[]=__TIGCCLIB_VERSION_STRING__;
  17. #endif
  18. #endif