mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-05 19:43:44 +00:00
9 lines
249 B
Go
9 lines
249 B
Go
//go:build !avr
|
|
|
|
package reflect
|
|
|
|
// intw is an integer type, used in places where an int is typically required,
|
|
// except architectures where the size of an int != word size.
|
|
// See https://github.com/tinygo-org/tinygo/issues/1284.
|
|
type intw = int
|