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

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