summaryrefslogtreecommitdiff
path: root/vm/vm_setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm/vm_setup.c')
-rw-r--r--vm/vm_setup.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/vm/vm_setup.c b/vm/vm_setup.c
index 6d21597c..aef9e800 100644
--- a/vm/vm_setup.c
+++ b/vm/vm_setup.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011, 2012 Richard Braun.
+ * Copyright (c) 2011, 2012, 2013 Richard Braun.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,6 +18,7 @@
#include <kern/init.h>
#include <kern/kmem.h>
#include <machine/pmap.h>
+#include <vm/vm_anon.h>
#include <vm/vm_map.h>
#include <vm/vm_kmem.h>
#include <vm/vm_phys.h>
@@ -31,4 +32,5 @@ vm_setup(void)
kmem_setup();
vm_map_setup();
pmap_setup();
+ vm_anon_setup();
}