...

Source file src/runtime/stubs32.go

     1	// Copyright 2015 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	// +build 386 arm amd64p32 mips mipsle
     6	
     7	package runtime
     8	
     9	import "unsafe"
    10	
    11	// Declarations for runtime services implemented in C or assembly that
    12	// are only present on 32 bit systems.
    13	
    14	func call16(fn, arg unsafe.Pointer, n, retoffset uint32)
    15	

View as plain text