From f76659945644e1f7a5699cda75840ce388792f22 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Fri, 26 Apr 2002 22:57:16 +0000 Subject: [PATCH] Eliminated bc++/Linux warnings. --- src/xpdev/conwrap.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/xpdev/conwrap.c b/src/xpdev/conwrap.c index 67e0c8e737..9171d13161 100644 --- a/src/xpdev/conwrap.c +++ b/src/xpdev/conwrap.c @@ -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 -- GitLab