<iso646.h>: Avoid conflicts w/ C++ keywords.
[dragonfly.git] / sys / cpu / i386 / include / math.h
1 /* 
2  * $NetBSD: math.h,v 1.2 2003/10/28 00:55:28 kleink Exp $
3  * $DragonFly: src/sys/cpu/i386/include/math.h,v 1.3 2008/04/09 06:44:37 hasso Exp $
4  */
5
6 #ifndef _CPU_MATH_H_
7 #define _CPU_MATH_H_
8
9 #define __HAVE_LONG_DOUBLE
10 #define __HAVE_NANF
11
12 #if __ISO_C_VISIBLE >= 1999
13 /* 7.12#2 float_t, double_t */
14 typedef long double     float_t;
15 typedef long double     double_t;
16 #endif
17
18 #endif