diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 2004-02-24 08:09:20 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 2004-02-24 08:09:20 +0000 |
| commit | f99a4b252c98a413a67556b299dd5d37ff4328b3 (patch) | |
| tree | 1e9077c2d522a4d103348c536589bbc414b4071b /include | |
| parent | 829a229d88f126ce06c2d47112d81621e1ec35e6 (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/getopt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/getopt.h b/include/getopt.h index 4943d04d0d78..dca3c3d66194 100644 --- a/include/getopt.h +++ b/include/getopt.h @@ -43,7 +43,7 @@ #include <sys/cdefs.h> /* - * GNU-like getopt_long() with 4.4BSD optreset extension. + * GNU-like getopt_long()/getopt_long_only() with 4.4BSD optreset extension. * getopt() is declared here too for GNU programs. */ #define no_argument 0 @@ -67,6 +67,8 @@ struct option { __BEGIN_DECLS int getopt_long(int, char * const *, const char *, const struct option *, int *); +int getopt_long_only(int, char * const *, const char *, + const struct option *, int *); #ifndef _GETOPT_DECLARED #define _GETOPT_DECLARED int getopt(int, char * const [], const char *); |
