Text file src/runtime/testdata/testprogcgo/bigstack1_windows.c
1 // Copyright 2021 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 // This is not in bigstack_windows.c because it needs to be part of 6 // testprogcgo but is not part of the DLL built from bigstack_windows.c. 7 8 #include "_cgo_export.h" 9 10 void CallGoBigStack1(char* p) { 11 goBigStack1(p); 12 } 13