mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 08:22:04 -04:00
silence compiler warning about main() not returning a value
This commit is contained in:
parent
d56b56dbba
commit
a567d37f78
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: genrandom.c,v 1.5 2000/08/09 01:37:33 bwelling Exp $ */
|
||||
/* $Id: genrandom.c,v 1.6 2000/08/14 03:32:53 gson Exp $ */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
|
@ -62,5 +62,5 @@ main(int argc, char **argv) {
|
|||
}
|
||||
fclose(fp);
|
||||
|
||||
exit(0);
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue