blob: 069d5171704326b633bfb71e3a8e909bd02960bc [file] [log] [blame]
// Copyright 2023 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build go1.19
package compat
import "fmt"
func Appendf(b []byte, format string, a ...interface{}) []byte {
return fmt.Appendf(b, format, a...)
}