Hello Michael, I noticed a small typo in the man page of sigaltstack in the example section, a { is missing : http://man7.org/linux/man-pages/man2/sigaltstack.2.html I believe : > if (sigaltstack(&ss, NULL) == -1) > perror("sigaltstack"); > exit(EXIT_FAILURE); > } should be : > if (sigaltstack(&ss, NULL) == -1) { > perror("sigaltstack"); > exit(EXIT_FAILURE); > } See you next year, and thank you for maintaining the manpages :) Best regards, Elie ROUDNINSKI P.S : sorry for previous email with HTML ... -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html