...

Source file src/runtime/write_err.go

Documentation: runtime

		 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  }
		15  

View as plain text