atoll
long long int atoll(const char *);
__weak_alias(atoll, _atoll)
atoll(const char *str)
repro_epoch = (time_t)atoll(optarg);
repro_epoch = atoll(optarg);
tp.tv_sec = (time_t)atoll(repro_timestamp);
return atoll(argv[1]) != ifunc();
ATF_REQUIRE(atoll("0") == strtoll("0", NULL, 10));
ATF_REQUIRE(atoll("-1") == strtoll("-1", NULL, 10));
ATF_REQUIRE(atoll(buf) == strtoll(buf, NULL, 10));
return ifunc() != atoll(argv[1]);
long long int atoll(const char *);
repro_time = atoll(optarg);