blob: 1437ad56163ee86219d4772739e02c8fb233c4c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <math.h>
#if 0 /* if fmal is generally as fast or faster than multiply and add */
#define FP_FAST_FMAL
#else
#undef FP_FAST_FMAL
#endif
/*
STDC(199901)
LINK(m)
*/
|