* tests/test-sys_wait.h (test_sys_wait_macros):
Widen scope of ‘#if 0’ so that there is not an unreachable ‘break;’.
2022-01-14 Paul Eggert <eggert@cs.ucla.edu>
+ tests: pacify nvc 22.1 unreachable statement
+ * tests/test-sys_wait.h (test_sys_wait_macros):
+ Widen scope of ‘#if 0’ so that there is not an unreachable ‘break;’.
+
tests: pacify nvc 22.1 set-but-not-used
* tests/test-fnmatch.c (main): Don’t set a var without using it.
* tests/test-sched.c (f1): Now extern.
}
i = WEXITSTATUS (i) + WSTOPSIG (i) + WTERMSIG (i);
+#if 0
switch (i)
{
-#if 0
/* Gnulib doesn't guarantee these, yet. */
case WNOHANG:
case WUNTRACED:
-#endif
break;
}
+#endif
return 0;
}