* beyond - call when we're beyond the end of the argument list (an * error condition) */
| 127 | * error condition) |
| 128 | */ |
| 129 | static _Noreturn void |
| 130 | beyond (void) |
| 131 | { |
| 132 | test_syntax_error (_("missing argument after %s"), quote (argv[argc - 1])); |
| 133 | } |
| 134 | |
| 135 | /* If the characters pointed to by STRING constitute a valid number, |
| 136 | return a pointer to the start of the number, skipping any blanks or |
no test coverage detected