aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/boehm-gc/add_gc_prefix.c
blob: 59515c7866e2506c80d829ae57968f063bb5e578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# include <stdio.h>
# include "version.h"
 
int main(argc, argv, envp)
int argc;
char ** argv;
char ** envp;
{
    int i;
    
    for (i = 1; i < argc; i++) {
      if (GC_ALPHA_VERSION == GC_NOT_ALPHA) {
	printf("gc%d.%d/%s ", GC_VERSION_MAJOR, GC_VERSION_MINOR, argv[i]);
      } else {
	printf("gc%d.%dalpha%d/%s ", GC_VERSION_MAJOR,
	       GC_VERSION_MINOR, GC_ALPHA_VERSION, argv[i]);
      }
    }
    return(0);
}