diff --git a/libc/src/stdio/printf_core/float_impl.cpp b/libc/src/stdio/printf_core/float_impl.cpp index e7c9ba39aa14..2215ac101f47 100644 --- a/libc/src/stdio/printf_core/float_impl.cpp +++ b/libc/src/stdio/printf_core/float_impl.cpp @@ -1,3 +1,18 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// +/// +/// \file +/// This file instantiates the functionality needed for supporting floating +/// point arguments in modular printf builds. Non-modular printf builds +/// implicitly instantiate these functions. +/// +//===----------------------------------------------------------------------===// + #ifdef LIBC_COPT_PRINTF_MODULAR #include "src/__support/arg_list.h"