Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
15924ff7
Commit
15924ff7
authored
May 30, 1993
by
Jim Blandy
Browse files
* hftctl.c (hft_alrm): Declare and define this to return void, not
int; the AIX #include files have prototypes for it.
parent
e3de4c57
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/hftctl.c
src/hftctl.c
+4
-4
No files found.
src/hftctl.c
View file @
15924ff7
...
...
@@ -110,7 +110,7 @@ static struct hfctlack ACK =
#ifdef __STDC__
static
GT_ACK
(
int
fd
,
int
req
,
char
*
buf
);
static
WR_REQ
(
int
fd
,
int
request
,
int
cmdlen
,
char
*
cmd
,
int
resplen
);
static
hft_alrm
(
int
sig
);
static
void
hft_alrm
(
int
sig
);
#else
static
GT_ACK
();
static
WR_REQ
();
...
...
@@ -275,9 +275,9 @@ GT_ACK (fd, req, buf)
}
/*************** HFT_ALRM FUNCTION ******************************/
static
int
hft_alrm
(
sig
)
/* Function hft_alrm - handle
*/
int
sig
;
/* alarm signal
*/
static
void
hft_alrm
(
sig
)
/* Function hft_alrm - handle */
int
sig
;
/* alarm signal
*/
{
signal
(
SIGALRM
,
sav_alrm
);
/* reset to previous */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment