diff options
Diffstat (limited to 'libexec/bootpd/bootpgw/bootpgw.c')
-rw-r--r-- | libexec/bootpd/bootpgw/bootpgw.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libexec/bootpd/bootpgw/bootpgw.c b/libexec/bootpd/bootpgw/bootpgw.c index c289352..b552eb3 100644 --- a/libexec/bootpd/bootpgw/bootpgw.c +++ b/libexec/bootpd/bootpgw/bootpgw.c @@ -153,7 +153,7 @@ char *hostname; * main server loop is started. */ -void +int main(argc, argv) int argc; char **argv; @@ -494,6 +494,7 @@ main(argc, argv) break; } } + return 0; } |