LCOV - code coverage report
Current view: top level - src - w_cabsf.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                 :             :  * cabsf() wrapper for hypotf().
       3                 :             :  *
       4                 :             :  * Written by J.T. Conklin, <jtc@wimsey.com>
       5                 :             :  * Placed into the Public Domain, 1994.
       6                 :             :  */
       7                 :             : 
       8                 :             : #include <openlibm_complex.h>
       9                 :             : #include <openlibm_math.h>
      10                 :             : 
      11                 :             : #include "math_private.h"
      12                 :             : 
      13                 :             : OLM_DLLEXPORT float
      14                 :           0 : cabsf(z)
      15                 :             :         float complex z;
      16                 :             : {
      17                 :             : 
      18                 :           0 :         return hypotf(crealf(z), cimagf(z));
      19                 :             : }
        

Generated by: LCOV version 2.0-115.g950771e