summaryrefslogtreecommitdiff
path: root/tools/gcname.c
blob: b9f336416cfd0310588b84e11cc723f01a9c6247 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <gc.h>

int main(void)
{
    printf("gc-%d.%d.%d",
           GC_VERSION_MAJOR, GC_VERSION_MINOR, GC_VERSION_MICRO);
    return 0;
}