Gabriele Monaco <[email protected]> writes: > + exit(run <= 0);
Probably better to stick to the C standard:
exit(run > 0 ? EXIT_SUCCESS : EXIT_FAILURE)
but whatever.
Reviewed-by: Nam Cao <[email protected]>
Gabriele Monaco <[email protected]> writes: > + exit(run <= 0);
Probably better to stick to the C standard:
exit(run > 0 ? EXIT_SUCCESS : EXIT_FAILURE)
but whatever.
Reviewed-by: Nam Cao <[email protected]>