2010-05-12 03:42:16 +08:00
|
|
|
// -*- C++ -*-
|
2021-11-18 05:25:01 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
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_COMPLEX_H
|
|
|
|
#define _LIBCPP_COMPLEX_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
complex.h synopsis
|
|
|
|
|
|
|
|
#include <ccomplex>
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-10-09 08:26:50 +08:00
|
|
|
#include <__config>
|
|
|
|
|
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2022-02-02 09:16:40 +08:00
|
|
|
# pragma GCC system_header
|
2015-10-09 08:26:50 +08:00
|
|
|
#endif
|
|
|
|
|
2010-07-30 02:43:15 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
#include <ccomplex>
|
|
|
|
|
2010-08-22 08:02:43 +08:00
|
|
|
#else // __cplusplus
|
2010-07-30 02:43:15 +08:00
|
|
|
|
|
|
|
#include_next <complex.h>
|
|
|
|
|
2021-04-21 00:03:32 +08:00
|
|
|
#endif // __cplusplus
|
2010-07-30 02:43:15 +08:00
|
|
|
|
2021-04-21 00:03:32 +08:00
|
|
|
#endif // _LIBCPP_COMPLEX_H
|