/* _Poly function */ #include "xmath.h" _C_STD_BEGIN _MRTIMP2_NCEEPURE double __CLRCALL_PURE_OR_CDECL _Poly(double x, const double *tab, int n) { /* compute polynomial */ double y; for (y = *tab; 0 <= --n; ) y = y * x + *++tab; return (y); } _C_STD_END /* * Copyright (c) 1992-2005 by P.J. Plauger. ALL RIGHTS RESERVED. * Consult your license regarding permissions and restrictions. V4.05:0009 */