summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/mkversion.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/runtime/mkversion.c')
-rw-r--r--src/pkg/runtime/mkversion.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/pkg/runtime/mkversion.c b/src/pkg/runtime/mkversion.c
deleted file mode 100644
index 94ad0d9e5..000000000
--- a/src/pkg/runtime/mkversion.c
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright 2009 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build ignore
-
-#include <u.h>
-#include <libc.h>
-
-char *template =
- "// AUTO-GENERATED by autogen.sh; DO NOT EDIT\n\n"
- "package runtime\n"
- "const defaultGoroot = `%s`\n"
- "const theVersion = \"%s\"\n";
-
-void
-main(void)
-{
- print(template, getgoroot(), getgoversion());
- exits(0);
-}