File: sys.go

package info (click to toggle)
golang-1.13 1.13.6-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 114,648 kB
  • sloc: asm: 101,315; ansic: 6,427; sh: 1,793; perl: 1,103; xml: 623; python: 357; makefile: 109; cpp: 39; f90: 8; awk: 7; objc: 4
file content (21 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build solaris

package lif

import "unsafe"

var nativeEndian binaryByteOrder

func init() {
	i := uint32(1)
	b := (*[4]byte)(unsafe.Pointer(&i))
	if b[0] == 1 {
		nativeEndian = littleEndian
	} else {
		nativeEndian = bigEndian
	}
}