blob: 1ecc98ae5ff640d2d2fae237ac62b3489a272194 [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" ]
}