mirror of
https://github.com/containers/skopeo.git
synced 2025-09-17 15:30:38 +00:00
Bumps [github.com/containers/common](https://github.com/containers/common) from 0.38.0 to 0.38.1. - [Release notes](https://github.com/containers/common/releases) - [Commits](https://github.com/containers/common/compare/v0.38.0...v0.38.1) Signed-off-by: dependabot[bot] <support@github.com>
15 lines
244 B
Go
15 lines
244 B
Go
//+build !go1.9
|
|
|
|
package reflect2
|
|
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
//go:linkname makemap reflect.makemap
|
|
func makemap(rtype unsafe.Pointer) (m unsafe.Pointer)
|
|
|
|
func makeMapWithSize(rtype unsafe.Pointer, cap int) unsafe.Pointer {
|
|
return makemap(rtype)
|
|
}
|