mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-19 11:30:06 +00:00
11 lines
298 B
C
11 lines
298 B
C
|
/* 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)
|