2010-05-11 19:42:16 +00:00
|
|
|
// -*- C++ -*-
|
2022-06-26 20:05:32 +00:00
|
|
|
//===--------------------------- complex.h --------------------------------===//
|
2010-05-11 19:42:16 +00:00
|
|
|
//
|
2019-01-19 10:56:40 +00: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-11 19:42:16 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_COMPLEX_H
|
|
|
|
#define _LIBCPP_COMPLEX_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
complex.h synopsis
|
|
|
|
|
|
|
|
#include <ccomplex>
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-10-09 00:26:50 +00:00
|
|
|
#include <__config>
|
|
|
|
|
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
|
|
#pragma GCC system_header
|
|
|
|
#endif
|
|
|
|
|
2010-07-29 18:43:15 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
#include <ccomplex>
|
|
|
|
|
2010-08-22 00:02:43 +00:00
|
|
|
#else // __cplusplus
|
2010-07-29 18:43:15 +00:00
|
|
|
|
|
|
|
#include_next <complex.h>
|
|
|
|
|
2022-06-26 16:13:52 +00:00
|
|
|
#endif // __cplusplus
|
2010-07-29 18:43:15 +00:00
|
|
|
|
2022-06-26 16:13:52 +00:00
|
|
|
#endif // _LIBCPP_COMPLEX_H
|