Author: mmokhi (ports committer)
Date: Sat Feb 18 21:08:09 2017
New Revision: 313923
URL: https://svnweb.freebsd.org/changeset/base/313923

Log:
  Add new catrigl.c (r313761) APIs to include/complex.h
  
  Reviewed by:  bde, emaste
  Approved by:  bde, emaste (src committers)
  Differential Revision:        https://reviews.freebsd.org/D9615

Modified:
  head/include/complex.h

Modified: head/include/complex.h
==============================================================================
--- head/include/complex.h      Sat Feb 18 19:53:37 2017        (r313922)
+++ head/include/complex.h      Sat Feb 18 21:08:09 2017        (r313923)
@@ -67,6 +67,10 @@ double complex       cacos(double complex);
 float complex  cacosf(float complex);
 double complex cacosh(double complex);
 float complex  cacoshf(float complex);
+long double complex
+               cacoshl(long double complex);
+long double complex
+               cacosl(long double complex);
 double         carg(double complex);
 float          cargf(float complex);
 long double    cargl(long double complex);
@@ -74,10 +78,18 @@ double complex      casin(double complex);
 float complex  casinf(float complex);
 double complex casinh(double complex);
 float complex  casinhf(float complex);
+long double complex
+               casinhl(long double complex);
+long double complex
+               casinl(long double complex);
 double complex catan(double complex);
 float complex  catanf(float complex);
 double complex catanh(double complex);
 float complex  catanhf(float complex);
+long double complex
+               catanhl(long double complex);
+long double complex
+               catanl(long double complex);
 double complex ccos(double complex);
 float complex  ccosf(float complex);
 double complex ccosh(double complex);
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to