+ return strtoll_l(str, (char **)NULL, 10, __current_locale());
+}
+
+long long
+atoll_l(str, loc)
+ const char *str;
+ locale_t loc;
+{
+ /* no need to call NORMALIZE_LOCALE(loc) because strtoll_l will */
+ return strtoll_l(str, (char **)NULL, 10, loc);