diff options
-rw-r--r-- | sys/amd64/include/proc.h | 2 | ||||
-rw-r--r-- | sys/arm/include/proc.h | 1 | ||||
-rw-r--r-- | sys/i386/include/proc.h | 2 | ||||
-rw-r--r-- | sys/ia64/include/proc.h | 1 | ||||
-rw-r--r-- | sys/mips/include/proc.h | 1 | ||||
-rw-r--r-- | sys/powerpc/include/proc.h | 1 | ||||
-rw-r--r-- | sys/sparc64/include/proc.h | 1 |
7 files changed, 0 insertions, 9 deletions
diff --git a/sys/amd64/include/proc.h b/sys/amd64/include/proc.h index 2de7a9e..5207d89 100644 --- a/sys/amd64/include/proc.h +++ b/sys/amd64/include/proc.h @@ -85,8 +85,6 @@ struct syscall_args { register_t args[8]; int narg; }; -#define HAVE_SYSCALL_ARGS_DEF 1 - #endif /* _KERNEL */ #endif /* !_MACHINE_PROC_H_ */ diff --git a/sys/arm/include/proc.h b/sys/arm/include/proc.h index cf74d36..c1bce00 100644 --- a/sys/arm/include/proc.h +++ b/sys/arm/include/proc.h @@ -71,6 +71,5 @@ struct syscall_args { u_int nap; u_int32_t insn; }; -#define HAVE_SYSCALL_ARGS_DEF 1 #endif /* !_MACHINE_PROC_H_ */ diff --git a/sys/i386/include/proc.h b/sys/i386/include/proc.h index 0d92252..86e8602 100644 --- a/sys/i386/include/proc.h +++ b/sys/i386/include/proc.h @@ -83,8 +83,6 @@ struct syscall_args { register_t args[8]; int narg; }; -#define HAVE_SYSCALL_ARGS_DEF 1 - #endif /* _KERNEL */ #endif /* !_MACHINE_PROC_H_ */ diff --git a/sys/ia64/include/proc.h b/sys/ia64/include/proc.h index 8818b9d..d7f0b4a 100644 --- a/sys/ia64/include/proc.h +++ b/sys/ia64/include/proc.h @@ -49,7 +49,6 @@ struct syscall_args { register_t args32[8]; int narg; }; -#define HAVE_SYSCALL_ARGS_DEF 1 #endif #endif /* !_MACHINE_PROC_H_ */ diff --git a/sys/mips/include/proc.h b/sys/mips/include/proc.h index 4c0b0b6..8b575dd 100644 --- a/sys/mips/include/proc.h +++ b/sys/mips/include/proc.h @@ -80,7 +80,6 @@ struct syscall_args { int narg; struct trapframe *trapframe; }; -#define HAVE_SYSCALL_ARGS_DEF 1 #endif #ifdef __mips_n64 diff --git a/sys/powerpc/include/proc.h b/sys/powerpc/include/proc.h index 0842b83..627fbf2 100644 --- a/sys/powerpc/include/proc.h +++ b/sys/powerpc/include/proc.h @@ -60,7 +60,6 @@ struct syscall_args { register_t args[10]; int narg; }; -#define HAVE_SYSCALL_ARGS_DEF 1 #endif #endif /* !_MACHINE_PROC_H_ */ diff --git a/sys/sparc64/include/proc.h b/sys/sparc64/include/proc.h index dceea17..006fcfa 100644 --- a/sys/sparc64/include/proc.h +++ b/sys/sparc64/include/proc.h @@ -61,7 +61,6 @@ struct syscall_args { register_t args[8]; int narg; }; -#define HAVE_SYSCALL_ARGS_DEF 1 #endif |