X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhbuild.c;h=2b0ad1affb8d2d2ff14ab0e178173343ee998958;hb=b3f36786e62ff7b708849e05d0cac2f55f37e6a5;hp=bacec1003d26f62ecb697b4d678dfdf9f9b91da6;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b;p=mmh diff --git a/uip/mhbuild.c b/uip/mhbuild.c index bacec10..2b0ad1a 100644 --- a/uip/mhbuild.c +++ b/uip/mhbuild.c @@ -3,6 +3,10 @@ * mhbuild.c -- expand/translate MIME composition files * * $Id$ + * + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #include @@ -11,8 +15,8 @@ #include #include #include -#include -#include +#include +#include #include #include #include @@ -57,7 +61,7 @@ static struct swit switches[] = { #define VERSIONSW 16 { "version", 0 }, #define HELPSW 17 - { "help", 4 }, + { "help", 0 }, #define DEBUGSW 18 { "debug", -5 }, { NULL, 0 } @@ -363,12 +367,11 @@ main (int argc, char **argv) unlink_outfile = 0; free_content (ct); - done (0); - /* NOT REACHED */ + return done (0); } -void +int done (int status) { /* @@ -381,4 +384,5 @@ done (int status) unlink (outfile); exit (status); + return 1; /* dead code to satisfy the compiler */ }