blob: 87f66f95f6f7f8171ac7783fb84cf8bbb131c83f [file] [log] [blame]
# Copyright 2023 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("../libc.gni")
llvm_libc_group("stdio") {
# For now, none of llvm-libc's stdio is in use in libc.
# The printf_core code is not yet used in libc, but is tested.
testonly_deps = [
":snprintf",
"printf_core",
]
}
llvm_libc_source_set("snprintf") {
visibility = [ "//sdk/lib/ld/*" ]
functions = [ "snprintf" ]
deps = [
"printf_core",
"printf_core:writer",
]
}