mirror of
https://github.com/make-42/xyosc
synced 2025-01-19 02:57:34 +01:00
14 lines
316 B
Go
14 lines
316 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2022 The Ebitengine Authors
|
|
|
|
//go:build darwin || freebsd || linux || windows
|
|
|
|
package purego
|
|
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
//go:linkname runtime_cgocall runtime.cgocall
|
|
func runtime_cgocall(fn uintptr, arg unsafe.Pointer) int32 // from runtime/sys_libc.go
|