Side by Side Diff: misc/cgo/testcdefs/cdefstest.c
Issue 120610043 :
code review 120610043: cmd/cgo: fix handling of defs_linux.go (Closed)
Patch Set: diff -r ed83901ff17e 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:
misc/cgo/testcdefs/cdefstest.c
misc/cgo/testcdefs/cdefstest.go
misc/cgo/testcdefs/main.c
src/cmd/cgo/gcc.go
src/cmd/cgo/out.go
src/pkg/runtime/defs_linux.go
OLD NEW
1 // Copyright 2013 The Go Authors. All rights reserved. 1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 #include "runtime.h" 5 #include "runtime.h"
6 #include "cdefstest.h" 6 #include "cdefstest.h"
7 7
8 struct CdefsTest test; 8 struct CdefsTest test;
9 struct PackedTest packed;
OLD NEW