The zgetopt() function will throw an error if you attempt to use a long
option flag like --this. So I'm including "-" in the third parameter to
zgetopt() to cause long option flags to be ignored.
/* Parse the options */
do {
- c = zgetopt(argc, argv, "aAb:c:def:Fh:il:oOpPqrR:s:S:tu:vw:xZ:");
+ c = zgetopt(argc, argv, "-aAb:c:def:Fh:il:oOpPqrR:s:S:tu:vw:xZ:");
switch(c) {
case 'a': f_setup.attribute_assignment = 1; break;
case 'A': f_setup.attribute_testing = 1; break;