Searched defs:current (Results 1 - 1 of 1) sorted by relevance

/build/tools/check_prereq/
H A Dcheck_prereq.c23 // against the current value of ro.build.date.utc. Exit successfully
24 // if the new build is newer than the current build (or if the
38 long current = strtol(value, NULL, 10); local
42 printf("current build time: [%ld] new build time: [%ld]\n",
43 current, install);
45 return (*end == 0 && current > 0 && install >= current) ? 0 : 1;

Completed in 50 milliseconds