am 529cb6c4: am 5a61272b: am adfc007d: Merge "Declare sincos/sincosf/sincosl in <math.h>."

* commit '529cb6c44d43c060d5bc4173599235e56fbf1d68':
  Declare sincos/sincosf/sincosl in <math.h>.
This commit is contained in:
Elliott Hughes 2014-05-09 09:36:06 +00:00 committed by Android Git Automerger
commit 68c937b929

View File

@ -457,6 +457,13 @@ long double tgammal(long double);
long double truncl(long double);
#endif /* __ISO_C_VISIBLE >= 1999 */
#if defined(_GNU_SOURCE)
void sincos(double, double*, double*);
void sincosf(float, float*, float*);
void sincosl(long double, long double*, long double*);
#endif /* _GNU_SOURCE */
__END_DECLS
#endif /* !_MATH_H_ */