mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-08 04:53:42 +00:00
10 lines
193 B
Go
10 lines
193 B
Go
//go:build go1.23
|
|
|
|
package cm
|
|
|
|
import "structs"
|
|
|
|
// HostLayout marks a struct as using host memory layout.
|
|
// See [structs.HostLayout] in Go 1.23 or later.
|
|
type HostLayout = structs.HostLayout
|