(s)
| 2393 | |
| 2394 | #ifndef HAVE_PERROR |
| 2395 | static void perror(s) |
| 2396 | char *s; |
| 2397 | { |
| 2398 | if (s && *s != '\0') |
| 2399 | (void) fprintf(stderr, "%s: ", s); |
| 2400 | (void) fprintf(stderr, "<unknown system error>\n"); |
| 2401 | } |
| 2402 | #endif /* HAVE_PERROR */ |
| 2403 | |
| 2404 |
no outgoing calls
no test coverage detected