libc_musl_linux_ppc64le.go 340 B

123456789101112
  1. // Copyright 2023 The Libc Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package libc // import "modernc.org/libc"
  5. type long = int64
  6. type ulong = uint64
  7. // RawMem represents the biggest byte array the runtime can handle
  8. type RawMem [1<<50 - 1]byte