summaryrefslogtreecommitdiff
path: root/kalloc.c
diff options
context:
space:
mode:
authorrsc <rsc>2007-08-27 23:26:33 +0000
committerrsc <rsc>2007-08-27 23:26:33 +0000
commit558ab49f13634d972e956020a12d14fdb1416b94 (patch)
tree02a4424e94f3401b8071dbfb2fe50212da17c35c /kalloc.c
parent99b11b6c64c17b94288c659e9398261e69a0cf75 (diff)
downloadxv6-labs-558ab49f13634d972e956020a12d14fdb1416b94.tar.gz
xv6-labs-558ab49f13634d972e956020a12d14fdb1416b94.tar.bz2
xv6-labs-558ab49f13634d972e956020a12d14fdb1416b94.zip
delete unnecessary #include lines
Diffstat (limited to 'kalloc.c')
-rw-r--r--kalloc.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/kalloc.c b/kalloc.c
index eb78212..e0b9765 100644
--- a/kalloc.c
+++ b/kalloc.c
@@ -5,12 +5,9 @@
// One reason the page size is 4k is that the x86 segment size
// granularity is 4k.
-#include "param.h"
#include "types.h"
#include "defs.h"
#include "param.h"
-#include "mmu.h"
-#include "proc.h"
#include "spinlock.h"
struct spinlock kalloc_lock;