diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-17 18:39:15 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-17 18:39:15 +0000 |
commit | ef5291f55dce34df92e5f4ea5c485a08d9ab0158 (patch) | |
tree | b8e0afefff8ad4f413b4d19a28a69f1e15de225b /boehm-gc/gcname.c | |
parent | eb465c68974a9db1889772b4171dfadfa5922fb7 (diff) | |
download | gcc-ef5291f55dce34df92e5f4ea5c485a08d9ab0158.tar.gz |
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44969 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/gcname.c')
-rw-r--r-- | boehm-gc/gcname.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/boehm-gc/gcname.c b/boehm-gc/gcname.c new file mode 100644 index 00000000000..e2119d79964 --- /dev/null +++ b/boehm-gc/gcname.c @@ -0,0 +1,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; +} |