xref: /minix3/external/bsd/libc++/dist/libcxx/include/tgmath.h (revision 4684ddb6aab0b36791c8099bc705d6140b3d05d0)
1*4684ddb6SLionel Sambuc // -*- C++ -*-
2*4684ddb6SLionel Sambuc //===-------------------------- tgmath.h ----------------------------------===//
3*4684ddb6SLionel Sambuc //
4*4684ddb6SLionel Sambuc //                     The LLVM Compiler Infrastructure
5*4684ddb6SLionel Sambuc //
6*4684ddb6SLionel Sambuc // This file is dual licensed under the MIT and the University of Illinois Open
7*4684ddb6SLionel Sambuc // Source Licenses. See LICENSE.TXT for details.
8*4684ddb6SLionel Sambuc //
9*4684ddb6SLionel Sambuc //===----------------------------------------------------------------------===//
10*4684ddb6SLionel Sambuc 
11*4684ddb6SLionel Sambuc #ifndef _LIBCPP_TGMATH_H
12*4684ddb6SLionel Sambuc #define _LIBCPP_TGMATH_H
13*4684ddb6SLionel Sambuc 
14*4684ddb6SLionel Sambuc /*
15*4684ddb6SLionel Sambuc     tgmath.h synopsis
16*4684ddb6SLionel Sambuc 
17*4684ddb6SLionel Sambuc #include <complex.h>
18*4684ddb6SLionel Sambuc #include <math.h>
19*4684ddb6SLionel Sambuc 
20*4684ddb6SLionel Sambuc */
21*4684ddb6SLionel Sambuc 
22*4684ddb6SLionel Sambuc #include <complex.h>
23*4684ddb6SLionel Sambuc #include <math.h>
24*4684ddb6SLionel Sambuc 
25*4684ddb6SLionel Sambuc #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
26*4684ddb6SLionel Sambuc #pragma GCC system_header
27*4684ddb6SLionel Sambuc #endif
28*4684ddb6SLionel Sambuc 
29*4684ddb6SLionel Sambuc #endif  // _LIBCPP_TGMATH_H
30