Delta Between Two Patch Sets: misc/cgo/testso/cgoso_c.c
Issue 5788043 :
code review 5788043: misc/cgo: re-enable testso (Closed)
Left Patch Set: diff -r f25b7abf4c99 https://code.google.com/p/go
Right Patch Set: diff -r c64018498d5f https://code.google.com/p/go
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
.hgignore
misc/cgo/testso/Makefile
misc/cgo/testso/cgoso.go
misc/cgo/testso/cgoso_c.c
misc/cgo/testso/main.go
misc/cgo/testso/test.bash
src/run.bash
LEFT RIGHT
1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // +build ignore
6
7 void sofunc(void)
8 {
9 extern void goCallback(void);
10 goCallback();
11 }
LEFT RIGHT