Text file src/cmd/cgo/internal/test/issue4339.h
1 // Copyright 2013 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 typedef struct Issue4339 Issue4339; 6 7 struct Issue4339 { 8 char *name; 9 void (*bar)(void); 10 }; 11 12 extern Issue4339 exported4339; 13 void handle4339(Issue4339*); 14