1227825Stheraven// -*- C++ -*-
2227825Stheraven//===--------------------------- ccomplex ---------------------------------===//
3227825Stheraven//
4353358Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5353358Sdim// See https://llvm.org/LICENSE.txt for license information.
6353358Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7227825Stheraven//
8227825Stheraven//===----------------------------------------------------------------------===//
9227825Stheraven
10227825Stheraven#ifndef _LIBCPP_CCOMPLEX
11227825Stheraven#define _LIBCPP_CCOMPLEX
12227825Stheraven
13227825Stheraven/*
14227825Stheraven    ccomplex synopsis
15227825Stheraven
16227825Stheraven#include <complex>
17227825Stheraven
18227825Stheraven*/
19227825Stheraven
20227825Stheraven#include <complex>
21227825Stheraven
22227825Stheraven#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
23227825Stheraven#pragma GCC system_header
24227825Stheraven#endif
25227825Stheraven
26227825Stheraven// hh 080623 Created
27227825Stheraven
28227825Stheraven#endif  // _LIBCPP_CCOMPLEX
29