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