* getopt_long_only -- * Parse argc/argv argument vector. */
| 458 | * Parse argc/argv argument vector. |
| 459 | */ |
| 460 | int |
| 461 | getopt_long_only(int nargc, char *nargv[], const char *options, |
| 462 | const struct option *long_options, int *idx) |
| 463 | { |
| 464 | |
| 465 | return (getopt_internal(nargc, nargv, options, long_options, idx, |
| 466 | FLAG_PERMUTE|FLAG_LONGONLY)); |
| 467 | } |
| 468 | |
| 469 | #endif /* NEED_USUAL_GETOPT */ |
nothing calls this directly
no test coverage detected