summaryrefslogtreecommitdiffstats
path: root/warp/sig.c
diff options
context:
space:
mode:
Diffstat (limited to 'warp/sig.c')
-rw-r--r--warp/sig.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/warp/sig.c b/warp/sig.c
index 3be78777..18e64564 100644
--- a/warp/sig.c
+++ b/warp/sig.c
@@ -58,7 +58,7 @@ sig_init()
#ifdef SIGTSTP
void
-cont_catcher()
+cont_catcher(int x)
{
#ifndef lint
sigset(SIGCONT,cont_catcher);
@@ -110,7 +110,7 @@ int status;
/* come here on signal other than interrupt, stop, or cont */
void
-sig_catcher(signo)
+sig_catcher(int signo)
{
#ifdef VERBOSE
static char *signame[] = {
@@ -204,7 +204,7 @@ sig_catcher(signo)
/* come here on stop signal */
void
-stop_catcher()
+stop_catcher(int sig)
{
if (!waiting) {
resetty(); /* this is the point of all this */