Revert "rename amd64 architecture to x86_64"
[dragonfly.git] / sys / cpu / amd64 / include / math.h
1 /* 
2  * $NetBSD: math.h,v 1.2 2003/10/28 00:55:28 kleink Exp $
3  * $DragonFly: src/sys/cpu/amd64/include/math.h,v 1.2 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 float   float_t;
15 typedef double  double_t;
16 #endif
17
18 #endif