summaryrefslogtreecommitdiff
path: root/boehm-gc/gcname.c
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-17 18:39:15 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-17 18:39:15 +0000
commitef5291f55dce34df92e5f4ea5c485a08d9ab0158 (patch)
treeb8e0afefff8ad4f413b4d19a28a69f1e15de225b /boehm-gc/gcname.c
parenteb465c68974a9db1889772b4171dfadfa5922fb7 (diff)
downloadgcc-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.c13
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;
+}