2010-05-12 03:42:16 +08:00
|
|
|
// -*- C++ -*-
|
|
|
|
//===-------------------------- tgmath.h ----------------------------------===//
|
|
|
|
//
|
2019-01-19 18:56:40 +08:00
|
|
|
// 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
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_TGMATH_H
|
|
|
|
#define _LIBCPP_TGMATH_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
tgmath.h synopsis
|
|
|
|
|
2018-02-13 03:13:24 +08:00
|
|
|
#include <ctgmath>
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2018-02-13 03:13:24 +08:00
|
|
|
#include <__config>
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2011-10-18 04:05:10 +08:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2010-05-12 03:42:16 +08:00
|
|
|
#pragma GCC system_header
|
2011-10-18 04:05:10 +08:00
|
|
|
#endif
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2018-02-13 03:13:24 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
#include <ctgmath>
|
|
|
|
|
|
|
|
#else // __cplusplus
|
|
|
|
|
|
|
|
#include_next <tgmath.h>
|
|
|
|
|
2021-04-21 00:03:32 +08:00
|
|
|
#endif // __cplusplus
|
2018-02-13 03:13:24 +08:00
|
|
|
|
2021-04-21 00:03:32 +08:00
|
|
|
#endif // _LIBCPP_TGMATH_H
|