=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/math.h,v retrieving revision 1.35 retrieving revision 1.36 diff -c -r1.35 -r1.36 *** src/include/math.h 2016/03/17 20:55:35 1.35 --- src/include/math.h 2018/03/10 20:52:58 1.36 *************** *** 1,4 **** ! /* $OpenBSD: math.h,v 1.35 2016/03/17 20:55:35 jca Exp $ */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. --- 1,4 ---- ! /* $OpenBSD: math.h,v 1.36 2018/03/10 20:52:58 kettenis Exp $ */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. *************** *** 273,278 **** --- 273,280 ---- double gamma_r(double, int *); double lgamma_r(double, int *); + void sincos(double, double *, double *); + /* * IEEE Test Vector */ *************** *** 382,387 **** --- 384,391 ---- float gammaf_r(float, int *); float lgammaf_r(float, int *); + void sincosf(float, float *, float *); + /* * Float version of IEEE Test Vector */ *************** *** 459,464 **** --- 463,475 ---- long double fmal(long double, long double, long double); #endif /* __ISO_C_VISIBLE >= 1999 */ + + /* + * Long double versions of BSD math library entry points + */ + #if __BSD_VISIBLE + void sincosl(long double, long double *, long double *); + #endif /* * Library implementation