From 0784f93ce48a97cd32dbd800cf74718aede0c343 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Wed, 16 May 2007 01:57:36 +0000 Subject: [PATCH] s/return 0/exit(EXIT_SUCCESS)/ in example program. --- man2/select_tut.2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man2/select_tut.2 b/man2/select_tut.2 index 09b4992b4..83f0ef2d1 100644 --- a/man2/select_tut.2 +++ b/man2/select_tut.2 @@ -608,7 +608,7 @@ main(int argc, char **argv) SHUT_FD1; } } - return 0; + exit(EXIT_SUCCESS); } .fi .PP