mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-10-17 11:05:07 +02:00
Map getopt to bsd_getopt if we are using the overlay
This will ensure the code can safely and correctly use optreset transparently.
This commit is contained in:
@@ -36,5 +36,9 @@ bsd_getopt(int argc, char **argv, char *shortopts)
|
||||
optind = 0;
|
||||
}
|
||||
|
||||
return getopt(argc, argv, shortopts);
|
||||
/*
|
||||
* Make sure we are using the system getopt() and not a possible
|
||||
* overlay macro.
|
||||
*/
|
||||
return (getopt)(argc, argv, shortopts);
|
||||
}
|
||||
|
Reference in New Issue
Block a user