blob: b050ef70cddbdc5d5c297ba16f0b0d114859e6bf [file] [log] [blame]
Matteo Scandoloa4285862020-12-01 18:10:10 -08001//+build !go1.9
2
3package reflect2
4
5import (
6 "unsafe"
7)
8
9//go:linkname makemap reflect.makemap
10func makemap(rtype unsafe.Pointer) (m unsafe.Pointer)
11
12func makeMapWithSize(rtype unsafe.Pointer, cap int) unsafe.Pointer {
13 return makemap(rtype)
14}