| Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- | 
|  | 2 | //===--------------------------- complex.h --------------------------------===// | 
|  | 3 | // | 
| Howard Hinnant | 5b08a8a | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | //                     The LLVM Compiler Infrastructure | 
| Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // | 
| Howard Hinnant | 412dbeb | 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 | 3e51952 | 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 | 2999ea0 | 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 | a8e3da2 | 2010-07-29 18:43:15 +0000 | [diff] [blame] | 27 | #ifdef __cplusplus | 
|  | 28 |  | 
| Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 29 | #include <ccomplex> | 
|  | 30 |  | 
| Howard Hinnant | b3371f6 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 31 | #else  // __cplusplus | 
| Howard Hinnant | a8e3da2 | 2010-07-29 18:43:15 +0000 | [diff] [blame] | 32 |  | 
|  | 33 | #include_next <complex.h> | 
|  | 34 |  | 
| Howard Hinnant | b3371f6 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 35 | #endif  // __cplusplus | 
| Howard Hinnant | a8e3da2 | 2010-07-29 18:43:15 +0000 | [diff] [blame] | 36 |  | 
| Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 37 | #endif  // _LIBCPP_COMPLEX_H |