Cygwin: (mostly) drop NT4 and Samba < 3.0 support
[newlib-cygwin.git] / winsup / cygwin / math / fmal.c
blob3d0eb020b13cfe1697028aee53cd9ad9dc099b48
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6 long double fmal ( long double _x, long double _y, long double _z);
8 long double
9 fmal ( long double _x, long double _y, long double _z)
11 return ((_x * _y) + _z);