summaryrefslogtreecommitdiff
path: root/sys/lib/libsa/exec.c
diff options
context:
space:
mode:
authormartin <martin@NetBSD.org>2003-06-23 14:17:24 +0000
committermartin <martin@NetBSD.org>2003-06-23 14:17:24 +0000
commit34718fb25a614e90b3c9fd250744510efc7651fc (patch)
tree266e19a40bebe4c2b821519b25d42da2d6374a77 /sys/lib/libsa/exec.c
parent1f875208a7a4e7d011e42e6f9004f31fd7063588 (diff)
Protect opt_*.h include by _KERNEL_OPT
Diffstat (limited to 'sys/lib/libsa/exec.c')
-rw-r--r--sys/lib/libsa/exec.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/lib/libsa/exec.c b/sys/lib/libsa/exec.c
index 39cd71cc470..f1639e8ebbf 100644
--- a/sys/lib/libsa/exec.c
+++ b/sys/lib/libsa/exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: exec.c,v 1.20 2003/06/23 11:02:08 martin Exp $ */
+/* $NetBSD: exec.c,v 1.21 2003/06/23 14:17:24 martin Exp $ */
/*-
* Copyright (c) 1982, 1986, 1990, 1993
@@ -33,7 +33,9 @@
* SUCH DAMAGE.
*/
+#ifdef _KERNEL_OPT
#include "opt_insecure.h"
+#endif
#include <sys/param.h>
#include <sys/reboot.h>