Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===--------------------------- complex.h --------------------------------===// |
| 3 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_COMPLEX_H |
| 12 | #define _LIBCPP_COMPLEX_H |
| 13 | |
| 14 | /* |
| 15 | complex.h synopsis |
| 16 | |
| 17 | #include <ccomplex> |
| 18 | |
| 19 | */ |
| 20 | |
Richard Smith | 45bae0b | 2015-10-09 00:26:50 +0000 | [diff] [blame] | 21 | #include <__config> |
| 22 | |
| 23 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
| 24 | #pragma GCC system_header |
| 25 | #endif |
| 26 | |
Howard Hinnant | d78b315 | 2010-07-29 18:43:15 +0000 | [diff] [blame] | 27 | #ifdef __cplusplus |
| 28 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 29 | #include <ccomplex> |
| 30 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 31 | #else // __cplusplus |
Howard Hinnant | d78b315 | 2010-07-29 18:43:15 +0000 | [diff] [blame] | 32 | |
| 33 | #include_next <complex.h> |
| 34 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 35 | #endif // __cplusplus |
Howard Hinnant | d78b315 | 2010-07-29 18:43:15 +0000 | [diff] [blame] | 36 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 37 | #endif // _LIBCPP_COMPLEX_H |