Mercurial > emacs
diff src/hftctl.c @ 3470:a6dde97d8166
(hft_alrm): Don't return a value.
Always declare to return void.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Fri, 04 Jun 1993 05:20:16 +0000 |
| parents | dcc64ab7de8c |
| children | 507f64624555 |
line wrap: on
line diff
--- a/src/hftctl.c Fri Jun 04 05:16:58 1993 +0000 +++ b/src/hftctl.c Fri Jun 04 05:20:16 1993 +0000 @@ -114,7 +114,7 @@ #else static GT_ACK (); static WR_REQ (); -static hft_alrm (); +static void hft_alrm (); #endif /*************** HFTCTL FUNCTION *******************************/ @@ -282,7 +282,7 @@ signal (SIGALRM, sav_alrm); /* reset to previous */ if (is_ack_vtd) /* has ack vtd arrived ? */ - return(0); /* yes, then continue */ + return; /* yes, then continue */ else /* no, then return with error */ longjmp (hftenv, -1);
