Searched refs:tail (Results 1 – 4 of 4) sorted by relevance
20 MAJOR=$(echo __clang_major__ | $compiler -E -x c - | tail -n 1)21 MINOR=$(echo __clang_minor__ | $compiler -E -x c - | tail -n 1)22 PATCHLEVEL=$(echo __clang_patchlevel__ | $compiler -E -x c - | tail -n 1)
26 MAJOR=$(echo __GNUC__ | $compiler -E -x c - | tail -n 1)27 MINOR=$(echo __GNUC_MINOR__ | $compiler -E -x c - | tail -n 1)29 PATCHLEVEL=$(echo __GNUC_PATCHLEVEL__ | $compiler -E -x c - | tail -n 1)
220 my $tail = $5; # doesn't include the final newline224 $tail);
995 char *tail; in expr_parse_string() local1007 val->s = strtoll(str, &tail, 10); in expr_parse_string()1011 val->u = strtoull(str, &tail, 16); in expr_parse_string()1016 val->s = strtoll(str, &tail, 0); in expr_parse_string()1022 return !errno && !*tail && tail > str && isxdigit(tail[-1]) in expr_parse_string()
Completed in 8 milliseconds