* This also coincides with the example in getopt(3)
Discussed-with: swildner@
.Ic switch
statement that cascade should have a
.Li FALLTHROUGH
-comment, unless they contain no code of their own, as in the
-.Ic case '?'
-element in the example below.
+comment, unless they contain no code of their own.
Numerical arguments should be checked for accuracy.
Code that cannot be reached should have a
.Li NOTREACHED
usage();
}
break;
- case '?':
default:
usage();
/* NOTREACHED */
case 'h':
usage_help(true);
break;
- case '?':
default:
usage_help(false);
}
case 'h':
usage_help(true);
break;
- case '?':
default:
usage_help(false);
}