Introduce fsum()

This commit is contained in:
Justine Tunney 2021-06-11 16:49:30 -07:00
parent 8b08e81a07
commit 9504ebaf7e
4 changed files with 119 additions and 0 deletions

View file

@ -287,6 +287,9 @@ void sincos(double, double *, double *);
void sincosf(float, float *, float *);
void sincosl(long double, long double *, long double *);
float fsumf(const float *, size_t);
double fsum(const double *, size_t);
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
#endif /* COSMOPOLITAN_LIBC_MATH_H_ */