(root)/
glibc-2.38/
sysdeps/
ieee754/
ldbl-opt/
nldbl-clog10.c
       1  #include "nldbl-compat.h"
       2  #include <complex.h>
       3  
       4  double _Complex
       5  attribute_hidden
       6  clog10l (double _Complex x)
       7  {
       8    return clog10 (x);
       9  }
      10  extern __typeof (clog10l) __clog10l attribute_hidden;
      11  weak_alias (clog10l, __clog10l)