diff options
| author | Richard M. Stallman | 1993-06-04 05:20:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-04 05:20:16 +0000 |
| commit | cf418db388138ffe1a79a336c77de1ab0374e740 (patch) | |
| tree | b47cba8f0490741b8466b6d64d4b5d810f49eac2 /src | |
| parent | 6c0575f08e600783400dd912f3e69f89b1e815c5 (diff) | |
| download | emacs-cf418db388138ffe1a79a336c77de1ab0374e740.tar.gz emacs-cf418db388138ffe1a79a336c77de1ab0374e740.zip | |
(hft_alrm): Don't return a value.
Always declare to return void.
Diffstat (limited to 'src')
| -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); | |||
| 114 | #else | 114 | #else |
| 115 | static GT_ACK (); | 115 | static GT_ACK (); |
| 116 | static WR_REQ (); | 116 | static WR_REQ (); |
| 117 | static hft_alrm (); | 117 | static void hft_alrm (); |
| 118 | #endif | 118 | #endif |
| 119 | 119 | ||
| 120 | /*************** HFTCTL FUNCTION *******************************/ | 120 | /*************** HFTCTL FUNCTION *******************************/ |
| @@ -282,7 +282,7 @@ hft_alrm (sig) /* Function hft_alrm - handle */ | |||
| 282 | signal (SIGALRM, sav_alrm); /* reset to previous */ | 282 | signal (SIGALRM, sav_alrm); /* reset to previous */ |
| 283 | 283 | ||
| 284 | if (is_ack_vtd) /* has ack vtd arrived ? */ | 284 | if (is_ack_vtd) /* has ack vtd arrived ? */ |
| 285 | return(0); /* yes, then continue */ | 285 | return; /* yes, then continue */ |
| 286 | else /* no, then return with error */ | 286 | else /* no, then return with error */ |
| 287 | longjmp (hftenv, -1); | 287 | longjmp (hftenv, -1); |
| 288 | 288 | ||