Skip to content
Snippets Groups Projects
Commit f7665994 authored by rswindell's avatar rswindell
Browse files

Eliminated bc++/Linux warnings.

parent 6c0d85e1
Branches
Tags
No related merge requests found
......@@ -80,7 +80,9 @@ void _termios_reset(void)
/************************************************
This pair of functions handles Ctrl-Z presses
************************************************/
#if defined(__BORLANDC__)
#pragma argsused
#endif
void _sighandler_stop(int sig)
{
// clean up the terminal
......@@ -89,7 +91,9 @@ void _sighandler_stop(int sig)
// ... and stop
kill(getpid(), SIGSTOP);
}
#if defined(__BORLANDC__)
#pragma argsused
#endif
void _sighandler_cont(int sig)
{
// restore terminal
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment