From: Ian Lance Taylor Date: Wed, 25 Jul 2012 21:14:37 +0000 (-0700) Subject: cgo: fix declarations in _cgo_export.c X-Git-Tag: go1.1rc2~2777 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=24ae7e686d51954b8befaaaef27f55a245d0050e;p=gostls13.git cgo: fix declarations in _cgo_export.c Declare crosscall2. Declare the functions passed to it as returning void, rather than relying on implicit return type. R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/6432060 --- diff --git a/src/cmd/cgo/out.go b/src/cmd/cgo/out.go index 993a23ae46..aa084b65c9 100644 --- a/src/cmd/cgo/out.go +++ b/src/cmd/cgo/out.go @@ -474,6 +474,8 @@ func (p *Package) writeExports(fgo2, fc, fm *os.File) { fmt.Fprintf(fgcc, "/* Created by cgo - DO NOT EDIT. */\n") fmt.Fprintf(fgcc, "#include \"_cgo_export.h\"\n") + fmt.Fprintf(fgcc, "\nextern void crosscall2(void (*fn)(void *, int), void *, int);\n\n") + for _, exp := range p.ExpFunc { fn := exp.Func @@ -565,7 +567,7 @@ func (p *Package) writeExports(fgo2, fc, fm *os.File) { s += ")" fmt.Fprintf(fgcch, "\nextern %s;\n", s) - fmt.Fprintf(fgcc, "extern _cgoexp%s_%s(void *, int);\n", cPrefix, exp.ExpName) + fmt.Fprintf(fgcc, "extern void _cgoexp%s_%s(void *, int);\n", cPrefix, exp.ExpName) fmt.Fprintf(fgcc, "\n%s\n", s) fmt.Fprintf(fgcc, "{\n") fmt.Fprintf(fgcc, "\t%s __attribute__((packed)) a;\n", ctype)