gcname.c 275 B

1234567891011121314
  1. #include <stdio.h>
  2. #include "version.h"
  3. int main()
  4. {
  5. if (GC_ALPHA_VERSION == GC_NOT_ALPHA) {
  6. printf("gc%d.%d", GC_VERSION_MAJOR, GC_VERSION_MINOR);
  7. } else {
  8. printf("gc%d.%dalpha%d", GC_VERSION_MAJOR,
  9. GC_VERSION_MINOR, GC_ALPHA_VERSION);
  10. }
  11. return 0;
  12. }