From: Shenghou Ma Date: Sun, 9 Jun 2013 14:04:17 +0000 (+0800) Subject: runtime: remove unused file mkversion.c X-Git-Tag: go1.2rc2~1303 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e880ab112e9eb4ff6f7c6f3410b68238f8e7403f;p=gostls13.git runtime: remove unused file mkversion.c R=golang-dev, iant CC=golang-dev https://golang.org/cl/10107044 --- diff --git a/src/pkg/runtime/mkversion.c b/src/pkg/runtime/mkversion.c deleted file mode 100644 index 94ad0d9e5f..0000000000 --- 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 -#include - -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); -}