rename amd64 architecture to x86_64
[dragonfly.git] / sys / cpu / x86_64 / include / math.h
CommitLineData
fc3f9779
SS
1/*
2 * $NetBSD: math.h,v 1.2 2003/10/28 00:55:28 kleink Exp $
fc3f9779
SS
3 */
4
5#ifndef _CPU_MATH_H_
6#define _CPU_MATH_H_
7
8#define __HAVE_LONG_DOUBLE
9#define __HAVE_NANF
10
cb6534d1
HT
11#if __ISO_C_VISIBLE >= 1999
12/* 7.12#2 float_t, double_t */
13typedef float float_t;
14typedef double double_t;
15#endif
16
fc3f9779 17#endif