Merge pull request #2808 from kugelfuhr/kugelfuhr/flowanalysis

Simple flow analysis to find unreachable code
This commit is contained in:
Bob Andrews
2025-07-26 00:10:21 +02:00
committed by GitHub
28 changed files with 1051 additions and 152 deletions

View File

@@ -29,7 +29,7 @@ int optopt; /* character checked for validity */
char *optarg; /* argument associated with option */
#define tell(s) fputs(*argv,stderr);fputs(s,stderr); \
fputc(optopt,stderr);fputc('\n',stderr);return(BADCH);
fputc(optopt,stderr);fputc('\n',stderr);return(BADCH)
int __fastcall__ getopt (int argc, char* const* argv, const char* optstring)
/* Get option letter from argument vector */