(root)/
glibc-2.38/
sysdeps/
wordsize-64/
wcstoul.c
       1  /* We have to irritate the compiler a bit.  */
       2  #define __wcstoull_internal __wcstoull_internal_XXX
       3  #define wcstoull wcstoull_XXX
       4  #define wcstouq wcstouq_XXX
       5  #define __isoc23_wcstoull __isoc23_wcstoull_XXX
       6  
       7  #include <wcsmbs/wcstoul.c>
       8  
       9  #undef __wcstoull_internal
      10  #undef wcstoull
      11  #undef wcstouq
      12  #undef __isoc23_wcstoull
      13  strong_alias (__wcstoul_internal, __wcstoull_internal)
      14  libc_hidden_ver (__wcstoul_internal, __wcstoull_internal)
      15  weak_alias (wcstoul, wcstoull)
      16  weak_alias (wcstoul, wcstouq)
      17  weak_alias (wcstoul, wcstoumax)
      18  weak_alias (__isoc23_wcstoul, __isoc23_wcstoull)
      19  libc_hidden_ver (__isoc23_wcstoul, __isoc23_wcstoull)
      20  weak_alias (__isoc23_wcstoul, __isoc23_wcstoumax)