Mercurial > emacs
changeset 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 | ba185131c3e8 |
children | 0b6fc4c47891 |
files | src/hftctl.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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);