From da48256d5a4c1b8f83d450522155ed906129b1b7 Mon Sep 17 00:00:00 2001 From: christos Date: Sat, 16 Jul 2005 22:44:59 +0000 Subject: [PATCH] Don't depend on #ifdef VERIFIED_EXEC --- sys/sys/exec.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sys/sys/exec.h b/sys/sys/exec.h index 5659335476f3..59ed3ba22703 100644 --- a/sys/sys/exec.h +++ b/sys/sys/exec.h @@ -1,4 +1,4 @@ -/* $NetBSD: exec.h,v 1.110 2005/07/11 20:15:26 cube Exp $ */ +/* $NetBSD: exec.h,v 1.111 2005/07/16 22:44:59 christos Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -245,13 +245,9 @@ int vmcmd_map_zero (struct proc *, struct exec_vmcmd *); int copyargs (struct proc *, struct exec_package *, struct ps_strings *, char **, void *); void setregs (struct lwp *, struct exec_package *, u_long); -#ifdef VERIFIED_EXEC int check_veriexec (struct proc *, struct vnode *, struct exec_package *, int); int check_exec (struct proc *, struct exec_package *, int); -#else -int check_exec (struct proc *, struct exec_package *); -#endif int exec_init (int); int exec_read_from (struct proc *, struct vnode *, u_long off, void *, size_t);