(argc, argv, optstring)
| 695 | |
| 696 | #ifdef GETOPT |
| 697 | int |
| 698 | getopt(argc, argv, optstring) |
| 699 | int argc; |
| 700 | char *const *argv; |
| 701 | const char *optstring; |
| 702 | { |
| 703 | return _getopt_internal(argc, argv, optstring, |
| 704 | (const struct option *) 0, |
| 705 | (int *) 0, |
| 706 | 0); |
| 707 | } |
| 708 | #endif |
| 709 | |
| 710 | #endif /* _LIBC or not __GNU_LIBRARY__. */ |
no test coverage detected