On Tue, Apr 4, 2023, at 3:51 PM, Bogdan wrote: > Nice. The 0 and 1 may not be portable to each OS in the Universe > (see EXIT_SUCCESS and EXIT_FAILURE in exit(3)), but should be > good/portable enough for our goals. Or maybe some other simple solution.
ISO C guarantees that exit(0) has the same effect as exit(EXIT_SUCCESS). [It does *not*, however, guarantee that EXIT_SUCCESS == 0.] zw