mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-23 11:29:46 +00:00
e5d10a4327
Use native byte-order for IPC and program serialization. This way we will be able to support both little- and big-endian architectures. Signed-off-by: Alexander Egorenkov <Alexander.Egorenkov@ibm.com>
11 lines
256 B
Go
11 lines
256 B
Go
// Copyright 2020 syzkaller project authors. All rights reserved.
|
|
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
|
|
|
|
// +build s390x
|
|
|
|
package prog
|
|
|
|
import "encoding/binary"
|
|
|
|
var HostEndian = binary.BigEndian
|