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 /* - * 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 *);