complex.h 726 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // -*- C++ -*-
  2. //===--------------------------- complex.h --------------------------------===//
  3. //
  4. // The LLVM Compiler Infrastructure
  5. //
  6. // This file is dual licensed under the MIT and the University of Illinois Open
  7. // Source Licenses. See LICENSE.TXT for details.
  8. //
  9. //===----------------------------------------------------------------------===//
  10. #ifndef _LIBCPP_COMPLEX_H
  11. #define _LIBCPP_COMPLEX_H
  12. /*
  13. complex.h synopsis
  14. #include <ccomplex>
  15. */
  16. #include <__config>
  17. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  18. #pragma GCC system_header
  19. #endif
  20. #ifdef __cplusplus
  21. #include <ccomplex>
  22. #else // __cplusplus
  23. #include_next <complex.h>
  24. #endif // __cplusplus
  25. #endif // _LIBCPP_COMPLEX_H