repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* tree-inline.c (estimate_num_insns_1): Make OpenMP directives
[official-gcc.git]
/
boehm-gc
/
gcname.c
blob
e2119d7996402c70352796c363867d7841118b87
1
#include <stdio.h>
2
#include
"version.h"
3
4
int
main
()
5
{
6
if
(
GC_ALPHA_VERSION
==
GC_NOT_ALPHA
) {
7
printf
(
"gc%d.%d"
,
GC_VERSION_MAJOR
,
GC_VERSION_MINOR
);
8
}
else
{
9
printf
(
"gc%d.%dalpha%d"
,
GC_VERSION_MAJOR
,
10
GC_VERSION_MINOR
,
GC_ALPHA_VERSION
);
11
}
12
return
0
;
13
}