about summary refs log tree commit diff
path: root/sysdeps/wordsize-64/strtol.c
blob: 2a18f7a642b74d7b5711fbea8ffbfcf2c17f0dfa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* We have to irritate the compiler a bit.  */
#define __strtoll_internal __strtoll_internal_XXX
#define strtoll strtoll_XXX

#include <sysdeps/generic/strtol.c>

#undef __strtoll_internal
#undef strtoll
strong_alias (__strtol_internal, __strtoll_internal)
weak_alias (__strtoll_internal, strtoll)