From 646f46f0293f3554d8b5d8a3ed73af2b2a7c1634 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Mon, 14 May 2007 21:06:00 +0000 Subject: [PATCH] s/exit(0)/exit(EXIT_SUCCESS)/ --- man2/mprotect.2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man2/mprotect.2 b/man2/mprotect.2 index 5828c3eda..232a2aaca 100644 --- a/man2/mprotect.2 +++ b/man2/mprotect.2 @@ -140,7 +140,7 @@ main(void) c = p[666]; /* Read; ok */ p[666] = 42; /* Write; program dies on SIGSEGV */ - exit(0); + exit(EXIT_SUCCESS); } .fi .SH "CONFORMING TO"