From 3775ed521d75b9041104417c8c70e84ace674c40 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Fri, 4 Aug 2000 17:02:32 -0500 Subject: [svn-r2466] Added return statement to the main function to prevent some compiler warnings. It's not a meaningful addition, since it happens right after an _exit() statement. --- test/flush1.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/flush1.c b/test/flush1.c index bc51375..9ab18f4 100644 --- a/test/flush1.c +++ b/test/flush1.c @@ -89,8 +89,9 @@ main(void) fflush(stdout); fflush(stderr); _exit(0); + return 0; error: _exit(1); + return 1; } - -- cgit v0.12