2010-05-11 19:42:16 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
//===--------------------------- complex.h --------------------------------===//
|
|
|
|
//
|
2010-05-11 21:36:01 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-11 19:42:16 +00:00
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_COMPLEX_H
|
|
|
|
#define _LIBCPP_COMPLEX_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
complex.h synopsis
|
|
|
|
|
|
|
|
#include <ccomplex>
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
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>
|
|
|
|
|
2010-08-22 00:02:43 +00:00
|
|
|
#endif // __cplusplus
|
2010-07-29 18:43:15 +00:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
#pragma GCC system_header
|
|
|
|
|
|
|
|
#endif // _LIBCPP_COMPLEX_H
|