#endif
while ((ch = getopt(argc, argv, opts)) != EOF) {
switch (ch) {
- case 'd':
- settings.debug +=1;
- break;
+ case 'd': // LCOV_EXCL_LINE
+ settings.debug +=1; // LCOV_EXCL_LINE
+ break; // LCOV_EXCL_LINE
case 'l':
settings.logfp = fopen(optarg, "w");
if (settings.logfp == NULL)
int32_t old_x = game.lcg_x;
game.lcg_x = (LCG_A * game.lcg_x + LCG_C) % LCG_M;
if (settings.debug) {
- printf("# random %d\n", old_x);
+ printf("# random %d\n", old_x); // LCOV_EXCL_LINE
}
return old_x;
}