X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Frcvdist.c;h=7ee47fd92e0ce748b48f75bba9ec99716b43287d;hb=1ae9fa8a84998e44e0234543162e257815d7e972;hp=1667232c8a22436dcb9233a69f37a5ef1deda092;hpb=56a805299de35d8924969138aef4d0f1580daa6d;p=mmh diff --git a/uip/rcvdist.c b/uip/rcvdist.c index 1667232..7ee47fd 100644 --- a/uip/rcvdist.c +++ b/uip/rcvdist.c @@ -34,7 +34,7 @@ static char tmpfil[BUFSIZ] = ""; * prototypes */ static void rcvdistout (FILE *, char *, char *); -static int unlink_done (int); +static void unlink_done (int) NORETURN; int @@ -270,7 +270,7 @@ finished: ; } -static int +static void unlink_done (int status) { if (backup[0]) @@ -281,5 +281,4 @@ unlink_done (int status) unlink (tmpfil); exit (status ? RCV_MBX : RCV_MOK); - return 1; /* dead code to satisfy the compiler */ }