s/exit(0)/exit(EXIT_SUCCESS)/

This commit is contained in:
Michael Kerrisk 2007-05-14 21:06:00 +00:00
parent a6c4ce1b9c
commit 646f46f029
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ main(void)
c = p[666]; /* Read; ok */ c = p[666]; /* Read; ok */
p[666] = 42; /* Write; program dies on SIGSEGV */ p[666] = 42; /* Write; program dies on SIGSEGV */
exit(0); exit(EXIT_SUCCESS);
} }
.fi .fi
.SH "CONFORMING TO" .SH "CONFORMING TO"