diff options
author | 2001-11-06 19:53:09 +0000 | |
---|---|---|
committer | 2001-11-06 19:53:09 +0000 | |
commit | 489e49f965b7c1ff7f0b9f5c3828328436e699eb (patch) | |
tree | 1da9f68efcda9c41872b0a0f4306f743570c2ba3 /sys/kern/exec_elf.c | |
parent | unbreak child_return. (diff) | |
download | wireguard-openbsd-489e49f965b7c1ff7f0b9f5c3828328436e699eb.tar.xz wireguard-openbsd-489e49f965b7c1ff7f0b9f5c3828328436e699eb.zip |
Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.
(Look ma, I might have broken the tree)
Diffstat (limited to 'sys/kern/exec_elf.c')
-rw-r--r-- | sys/kern/exec_elf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/exec_elf.c b/sys/kern/exec_elf.c index 8a879c45253..889b150ce29 100644 --- a/sys/kern/exec_elf.c +++ b/sys/kern/exec_elf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec_elf.c,v 1.35 2001/09/19 13:28:43 art Exp $ */ +/* $OpenBSD: exec_elf.c,v 1.36 2001/11/06 19:53:20 miod Exp $ */ /* * Copyright (c) 1996 Per Fogelstrom @@ -48,7 +48,7 @@ #include <sys/stat.h> #include <sys/mman.h> -#include <vm/vm.h> +#include <uvm/uvm_extern.h> #include <machine/cpu.h> #include <machine/reg.h> |