In ANSI C (and in pre-ANSI UNIX implementations), if you return from

"main()", the program exits, and exits with an exit status equal to the
return value of "main()", so "return 0;" is sufficient at the end of
"main()".

svn path=/trunk/; revision=3350
This commit is contained in:
Guy Harris 2001-04-20 21:50:06 +00:00
parent 6e6ee8ca04
commit 39710cd582
1 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/* tethereal.c
*
* $Id: tethereal.c,v 1.81 2001/04/20 19:41:42 gram Exp $
* $Id: tethereal.c,v 1.82 2001/04/20 21:50:06 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -614,8 +614,7 @@ main(int argc, char *argv[])
epan_cleanup();
exit(0);
return 0; /* Silence compiler warnings */
return 0;
}
#ifdef HAVE_LIBPCAP