2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 05:57:52 +00:00

make main() return an int

This commit is contained in:
Bob Halley 1999-07-03 21:04:35 +00:00
parent ea14a39d2d
commit a29e9205d7

View File

@ -154,7 +154,7 @@ new_task(isc_mem_t *mctx) {
return (ti);
}
void
int
main(int argc, char *argv[]) {
unsigned int workers;
t_info *t1, *t2;
@ -197,4 +197,6 @@ main(int argc, char *argv[]) {
isc_mem_destroy(&mctx2);
isc_app_finish();
return (0);
}