diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-17 19:15:51 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-17 19:15:51 +0000 |
commit | a486302e8679649c276cc04201bddb3ac26cb87b (patch) | |
tree | 0b16dcf7de6f61ac72b1a931e53f50b8572a1b92 /sys/compat/svr4 | |
parent | f1737f18e9baa0780862ec2b54e52ce1546208bf (diff) |
Contextual goo for -Wall, and remove some stasic specifiers
Diffstat (limited to 'sys/compat/svr4')
-rw-r--r-- | sys/compat/svr4/svr4_ncr.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sys/compat/svr4/svr4_ncr.c b/sys/compat/svr4/svr4_ncr.c index 253739192c3..a3c252d8393 100644 --- a/sys/compat/svr4/svr4_ncr.c +++ b/sys/compat/svr4/svr4_ncr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: svr4_ncr.c,v 1.1 1996/04/25 10:20:18 niklas Exp $ */ +/* $OpenBSD: svr4_ncr.c,v 1.2 1996/10/17 19:15:50 niklas Exp $ */ /* * Copyright (c) 1995, 1996 Niklas Hallqvist @@ -33,10 +33,19 @@ #ifdef COMPAT_SVR4_NCR +#include <sys/types.h> #include <sys/errno.h> +#include <sys/signal.h> + +#include <compat/svr4/svr4_types.h> +#include <compat/svr4/svr4_signal.h> +#include <compat/svr4/svr4_syscallargs.h> int -svr4_ncr_sys_rdebug() +svr4_ncr_sys_rdebug(p, v, retval) + struct proc *p; + void *v; + register_t *retval; { return ENXIO; } |