annotate libcxx/include/complex.h @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children 2e18cbf3894f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // -*- C++ -*-
anatofuz
parents:
diff changeset
2 //===--------------------------- complex.h --------------------------------===//
anatofuz
parents:
diff changeset
3 //
anatofuz
parents:
diff changeset
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
anatofuz
parents:
diff changeset
5 // See https://llvm.org/LICENSE.txt for license information.
anatofuz
parents:
diff changeset
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
anatofuz
parents:
diff changeset
7 //
anatofuz
parents:
diff changeset
8 //===----------------------------------------------------------------------===//
anatofuz
parents:
diff changeset
9
anatofuz
parents:
diff changeset
10 #ifndef _LIBCPP_COMPLEX_H
anatofuz
parents:
diff changeset
11 #define _LIBCPP_COMPLEX_H
anatofuz
parents:
diff changeset
12
anatofuz
parents:
diff changeset
13 /*
anatofuz
parents:
diff changeset
14 complex.h synopsis
anatofuz
parents:
diff changeset
15
anatofuz
parents:
diff changeset
16 #include <ccomplex>
anatofuz
parents:
diff changeset
17
anatofuz
parents:
diff changeset
18 */
anatofuz
parents:
diff changeset
19
anatofuz
parents:
diff changeset
20 #include <__config>
anatofuz
parents:
diff changeset
21
anatofuz
parents:
diff changeset
22 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
anatofuz
parents:
diff changeset
23 #pragma GCC system_header
anatofuz
parents:
diff changeset
24 #endif
anatofuz
parents:
diff changeset
25
anatofuz
parents:
diff changeset
26 #ifdef __cplusplus
anatofuz
parents:
diff changeset
27
anatofuz
parents:
diff changeset
28 #include <ccomplex>
anatofuz
parents:
diff changeset
29
anatofuz
parents:
diff changeset
30 #else // __cplusplus
anatofuz
parents:
diff changeset
31
anatofuz
parents:
diff changeset
32 #include_next <complex.h>
anatofuz
parents:
diff changeset
33
anatofuz
parents:
diff changeset
34 #endif // __cplusplus
anatofuz
parents:
diff changeset
35
anatofuz
parents:
diff changeset
36 #endif // _LIBCPP_COMPLEX_H