1
0
mirror of https://github.com/golang/go synced 2024-11-25 07:07:57 -07:00

runtime: remove unused file mkversion.c

R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/10107044
This commit is contained in:
Shenghou Ma 2013-06-09 22:04:17 +08:00
parent 37c81d5870
commit e880ab112e

View File

@ -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);
}