diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-06-04 05:20:16 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-06-04 05:20:16 +0000 |
commit | 51b723c8cee2c048c3761e3f734252169ad8bd30 (patch) | |
tree | 5868b718130fc7ca4f9874a88f437ef0eaa71639 /src/hftctl.c | |
parent | 269d1936cc43cb902ab6f5dbc49d10e46d15922d (diff) | |
download | emacs-51b723c8cee2c048c3761e3f734252169ad8bd30.tar.gz |
(hft_alrm): Don't return a value.
Always declare to return void.
Diffstat (limited to 'src/hftctl.c')
-rw-r--r-- | src/hftctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hftctl.c b/src/hftctl.c index 679f56245e7..7f6cc919495 100644 --- a/src/hftctl.c +++ b/src/hftctl.c @@ -114,7 +114,7 @@ static void hft_alrm(int sig); #else static GT_ACK (); static WR_REQ (); -static hft_alrm (); +static void hft_alrm (); #endif /*************** HFTCTL FUNCTION *******************************/ @@ -282,7 +282,7 @@ hft_alrm (sig) /* Function hft_alrm - handle */ 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); |