Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
aff118ab
Commit
aff118ab
authored
Feb 25, 2010
by
Hisham Muhammad
Browse files
warning fixes
parent
23fc4097
Changes
1
Hide whitespace changes
Inline
Side-by-side
CRT.c
View file @
aff118ab
...
...
@@ -116,13 +116,15 @@ int CRT_colors[LAST_COLORELEMENT] = { 0 };
char
*
CRT_termType
;
static
void
CRT_handleSIGSEGV
(
int
signal
)
{
static
void
CRT_handleSIGSEGV
(
int
sgn
)
{
(
void
)
sgn
;
CRT_done
();
fprintf
(
stderr
,
"htop "
VERSION
" aborted. Please report bug at http://htop.sf.net
\n
"
);
exit
(
1
);
}
static
void
CRT_handleSIGTERM
(
int
signal
)
{
static
void
CRT_handleSIGTERM
(
int
sgn
)
{
(
void
)
sgn
;
CRT_done
();
exit
(
0
);
}
...
...
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