// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "partition_alloc/partition_alloc_base/strings/stringprintf.h" #include <cstdarg> #include <cstdio> #include "partition_alloc/partition_alloc_base/compiler_specific.h" #include "partition_alloc/partition_alloc_base/scoped_clear_last_error.h" namespace partition_alloc::internal::base { std::string PA_PRINTF_FORMAT(1, 2) TruncatingStringPrintf(const char* format, ...) { … } } // namespace partition_alloc::internal::base