xref: /llvm-project/libc/src/math/issignalingl.h (revision 47e3d8dc7e885f322d42785105163895ad0c943e)
1*47e3d8dcSShourya Goel //===-- Implementation header for issignalingl ------------------*- C++ -*-===//
2*47e3d8dcSShourya Goel //
3*47e3d8dcSShourya Goel // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*47e3d8dcSShourya Goel // See https://llvm.org/LICENSE.txt for license information.
5*47e3d8dcSShourya Goel // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*47e3d8dcSShourya Goel //
7*47e3d8dcSShourya Goel //===----------------------------------------------------------------------===//
8*47e3d8dcSShourya Goel 
9*47e3d8dcSShourya Goel #ifndef LLVM_LIBC_SRC_MATH_ISSIGNALINGL_H
10*47e3d8dcSShourya Goel #define LLVM_LIBC_SRC_MATH_ISSIGNALINGL_H
11*47e3d8dcSShourya Goel 
12*47e3d8dcSShourya Goel #include "src/__support/macros/config.h"
13*47e3d8dcSShourya Goel 
14*47e3d8dcSShourya Goel namespace LIBC_NAMESPACE_DECL {
15*47e3d8dcSShourya Goel 
16*47e3d8dcSShourya Goel int issignalingl(long double x);
17*47e3d8dcSShourya Goel 
18*47e3d8dcSShourya Goel } // namespace LIBC_NAMESPACE_DECL
19*47e3d8dcSShourya Goel 
20*47e3d8dcSShourya Goel #endif // LLVM_LIBC_SRC_MATH_ISSIGNALINGL_H
21