github.com/comwrg/go/src@v0.0.0-20220319063731-c238d0440370/runtime/write_err.go (about)

     1  // Copyright 2009 The Go 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  
     5  //go:build !android
     6  // +build !android
     7  
     8  package runtime
     9  
    10  import "unsafe"
    11  
    12  func writeErr(b []byte) {
    13  	write(2, unsafe.Pointer(&b[0]), int32(len(b)))
    14  }