1
0
mirror of https://github.com/golang/go synced 2024-10-03 06:21:21 -06:00

runtime: fix goc2c for rename to goc2c and *.goc

Release 2010-04-27. runtime: rename cgo2c, *.cgo to goc2c, *.goc
to avoid confusion with real cgo.

R=rsc
CC=golang-dev
https://golang.org/cl/1868047
This commit is contained in:
Peter Mundy 2010-07-26 16:21:27 -07:00 committed by Russ Cox
parent 5ee02eef4c
commit 036584395d

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
/* Translate a .cgo file into a .c file. A .cgo file is a combination
/* Translate a .goc file into a .c file. A .goc file is a combination
of a limited form of Go with C. */
/*
@ -669,7 +669,7 @@ process_file(void)
static void
usage(void)
{
fprintf(stderr, "Usage: cgo2c [--6g | --gc] [file]\n");
fprintf(stderr, "Usage: goc2c [--6g | --gc] [file]\n");
exit(1);
}