]> pd.if.org Git - pdclib/blob - functions/math/fma.c
Merged PDPCLIB and Therx code.
[pdclib] / functions / math / fma.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 // ----------------------------------------------------------------------------
9 // C++
10
11 float fma( float x, float y, float z ) { /* TODO */ };
12 long double fma( long double x, long double y, long double z ) { /* TODO */ };
13
14 // ----------------------------------------------------------------------------
15 // Standard C
16
17 double fma( double x, double y, double z ) { /* TODO */ };
18
19 /* Therx code
20 {
21     return (int) ( ( x * y ) + z + 0.5 );
22 }
23 */
24
25 float fmaf( float x, float y, float z ) { /* TODO */ };
26 long double fmal( long double x, long double y, long double z ) { /* TODO */ };