mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-14 09:49:14 +08:00
6 lines
100 B
C
6 lines
100 B
C
|
long double
|
||
|
fmal ( long double _x, long double _y, long double _z)
|
||
|
{
|
||
|
return ((_x * _y) + _z);
|
||
|
}
|