~ubuntu-branches/ubuntu/hardy/libgc/hardy-updates

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;
}