c++, coroutines: Provide a CTOR for a callback object [NFC].
[official-gcc.git] / libgo / go / runtime / write_err.go
blob81ae872e9c035d7f75783b3cfd2eed7d887004dc
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.
5 //go:build !android
7 package runtime
9 import "unsafe"
11 func writeErr(b []byte) {
12 write(2, unsafe.Pointer(&b[0]), int32(len(b)))