github.com/primecitizens/pcz/std@v0.2.1/core/sys/auxv_none.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright 2023 The Prime Citizens
     3  
     4  //go:build noos || js || wasip1 || darwin || openbsd || windows
     5  
     6  package sys
     7  
     8  type Auxv uintptr
     9  
    10  // for systems without auxv
    11  
    12  func (it AuxvIter) Nth(i int) (aux Auxv, ok bool) { return }
    13  func (it AuxvIter) Len() int                      { return 0 }
    14  func (it AuxvIter) SliceFrom(start int) AuxvIter  { return 0 }