Source file src/internal/runtime/cgobench/funcs.go
1 // Copyright 2025 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 //go:build cgo 6 7 package cgobench 8 9 /* 10 static void empty() { 11 } 12 */ 13 import "C" 14 15 func Empty() { 16 C.empty() 17 } 18