| 1358 | /* Report a string-to-integer conversion failure MSGID with ARG. */ |
| 1359 | |
| 1360 | static _Noreturn void |
| 1361 | strtoint_die (char const *msgid, char const *arg) |
| 1362 | { |
| 1363 | error (EXIT_FAILURE, errno == EINVAL ? 0 : errno, "%s: %s", |
| 1364 | gettext (msgid), quote (arg)); |
| 1365 | } |
| 1366 | |
| 1367 | /* Use OVERFLOW_OK when it is OK to ignore LONGINT_OVERFLOW errors, since the |
| 1368 | extreme value will do the right thing anyway on any practical platform. */ |
no outgoing calls
no test coverage detected