view gc/gcname.c @ 51488:5de98dce4bd1

*** empty log message ***
author Dave Love <fx@gnu.org>
date Thu, 05 Jun 2003 17:49:22 +0000
parents
children
line wrap: on
line source

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