(argc, argv, options, long_options, opt_index)
| 67 | instead. */ |
| 68 | |
| 69 | int |
| 70 | getopt_long_only(argc, argv, options, long_options, opt_index) |
| 71 | int argc; |
| 72 | char *const *argv; |
| 73 | const char *options; |
| 74 | const struct option *long_options; |
| 75 | int *opt_index; |
| 76 | { |
| 77 | return _getopt_internal(argc, argv, options, long_options, opt_index, 1); |
| 78 | } |
| 79 | |
| 80 | |
| 81 | #endif /* _LIBC or not __GNU_LIBRARY__. */ |
no test coverage detected