mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 12:16:38 +00:00
12 lines
184 B
Go
12 lines
184 B
Go
|
package wazevo
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
"unsafe"
|
||
|
)
|
||
|
|
||
|
//go:linkname memmove runtime.memmove
|
||
|
func memmove(_, _ unsafe.Pointer, _ uintptr)
|
||
|
|
||
|
var memmovPtr = reflect.ValueOf(memmove).Pointer()
|