9d2212ee9fe9ce7b29300ef63b4aaccb14265033
[cacao.git] / src / mm / boehm-gc / gcname.c
1 #include "config.h"
2
3 #include <stdio.h>
4 #include <gc.h>
5
6 int main()
7 {
8     if (GC_ALPHA_VERSION == GC_NOT_ALPHA) {
9         printf("gc%d.%d", GC_VERSION_MAJOR, GC_VERSION_MINOR);
10     } else {
11         printf("gc%d.%dalpha%d", GC_VERSION_MAJOR,
12                                  GC_VERSION_MINOR, GC_ALPHA_VERSION);
13     }
14     return 0;
15 }