Bug 216860

Summary: C11 conformance: csinhl() is missing
Product: Base System Reporter: sgk
Component: standardsAssignee: freebsd-standards (Nobody) <standards>
Status: Open ---    
Severity: Affects Many People CC: emaste
Priority: ---    
Version: CURRENT   
Hardware: Any   
OS: Any   
Bug Depends on: 240295    
Bug Blocks:    

Description sgk 2017-02-06 19:43:11 UTC
#include <complex.h>
long double complex
foo(long double complex z)
{
   return (csinhl(z));
}

 cc -c foo.c
foo.c:7:12: warning: implicitly declaring library function 'csinhl' with type
      '_Complex long double (_Complex long double)'
      [-Wimplicit-function-declaration]
   return (csinhl(z));
           ^
foo.c:7:12: note: include the header <complex.h> or explicitly provide a
      declaration for 'csinhl'
1 warning generated.