| 1 | /* We have to irritate the compiler a bit. */ |
|---|---|
| 2 | #define ____strtoull_l_internal ____strtoull_l_internal_XXX |
| 3 | #define __strtoull_l __strtoull_l_XXX |
| 4 | #define strtoull_l strtoull_l_XXX |
| 5 | |
| 6 | #include <stdlib/strtoul_l.c> |
| 7 | |
| 8 | #undef ____strtoull_l_internal |
| 9 | #undef __strtoull_l |
| 10 | #undef strtoull_l |
| 11 | strong_alias (____strtoul_l_internal, ____strtoull_l_internal) |
| 12 | libc_hidden_ver (____strtoul_l_internal, ____strtoull_l_internal) |
| 13 | weak_alias (__strtoul_l, __strtoull_l) |
| 14 | weak_alias (__strtoul_l, strtoull_l) |
| 15 |