Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcname.c - github.com/Unity-Technologies/bdwgc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2119d7996402c70352796c363867d7841118b87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include "version.h"

int main()
{
    if (GC_ALPHA_VERSION == GC_NOT_ALPHA) {
	printf("gc%d.%d", GC_VERSION_MAJOR, GC_VERSION_MINOR);
    } else {
	printf("gc%d.%dalpha%d", GC_VERSION_MAJOR,
				 GC_VERSION_MINOR, GC_ALPHA_VERSION);
    }
    return 0;
}