On 2/10/20 12:02 PM, Walter Harms wrote: > Its a bit late but ... > > we can be more direct here: > >> +function causes normal process termination and the value of \fIstatus & >> +0xFF\fP is returned to the parent (see > > function causes normal process termination and only lowest 8 bits > (\fIstatus & 0xFF\fP) is returned to the parent (see Thanks, Walter. I agree that it would not hurt to use a bit more natural language in the description. I made the text: The exit() function causes normal process termination and the least significant byte of status (i.e., status & 0xFF) is returned to the parent (see wait(2)). Thanks for the suggestion. Michael -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/