LCOV - code coverage report
Current view: top level - src - w_cabsl.c (source / functions) Coverage Total Hit
Test: app.info Lines: 0.0 % 2 0
Test Date: 2024-01-11 15:52:50 Functions: 0.0 % 1 0
Branches: - 0 0

             Branch data     Line data    Source code
       1                 :             : /*
       2                 :             :  * cabs() wrapper for hypot().
       3                 :             :  *
       4                 :             :  * Written by J.T. Conklin, <jtc@wimsey.com>
       5                 :             :  * Placed into the Public Domain, 1994.
       6                 :             :  *
       7                 :             :  * Modified by Steven G. Kargl for the long double type.
       8                 :             :  */
       9                 :             : 
      10                 :             : #include "cdefs-compat.h"
      11                 :             : //__FBSDID("$FreeBSD: src/lib/msun/src/w_cabsl.c,v 1.1 2008/03/30 20:02:03 das Exp $");
      12                 :             : 
      13                 :             : #include <openlibm_complex.h>
      14                 :             : #include <openlibm_math.h>
      15                 :             : 
      16                 :             : #include "math_private.h"
      17                 :             : 
      18                 :             : OLM_DLLEXPORT long double
      19                 :           0 : cabsl(long double complex z)
      20                 :             : {
      21                 :           0 :         return hypotl(creall(z), cimagl(z));
      22                 :             : }
        

Generated by: LCOV version 2.0-115.g950771e