Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===--------------------------- complex.h --------------------------------===// |
| 3 | // |
Howard Hinnant | c566dc3 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
| 6 | // This file is distributed under the University of Illinois Open Source |
| 7 | // License. See LICENSE.TXT for details. |
| 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 | |
Howard Hinnant | d2ef2f9 | 2010-07-29 18:43:15 +0000 | [diff] [blame] | 21 | #ifdef __cplusplus |
| 22 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 23 | #include <ccomplex> |
| 24 | |
Howard Hinnant | 3b6579a | 2010-08-22 00:02:43 +0000 | [diff] [blame^] | 25 | #else // __cplusplus |
Howard Hinnant | d2ef2f9 | 2010-07-29 18:43:15 +0000 | [diff] [blame] | 26 | |
| 27 | #include_next <complex.h> |
| 28 | |
Howard Hinnant | 3b6579a | 2010-08-22 00:02:43 +0000 | [diff] [blame^] | 29 | #endif // __cplusplus |
Howard Hinnant | d2ef2f9 | 2010-07-29 18:43:15 +0000 | [diff] [blame] | 30 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 31 | #pragma GCC system_header |
| 32 | |
| 33 | #endif // _LIBCPP_COMPLEX_H |