Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fmal.c « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1fbd41d2813872c5b2adc9b3331d80611827d434 (plain)
1
2
3
4
5
long double
fmal ( long double _x,  long double _y,  long double _z)
{
  return ((_x * _y) + _z);
}