libgocryptfs/allocator/allocator64.go

13 lines
157 B
Go
Raw Permalink Normal View History

2021-06-08 21:25:50 +02:00
// +build arm64 amd64
package allocator
import (
"C"
"unsafe"
)
func Malloc(size int) unsafe.Pointer {
return C.malloc(C.ulong(C.sizeof_int * size))
}