Redo makefiles.
[pintos-anon] / src / threads / malloc.c
index 7af11563795e925884ecc56269bf5eb8e5950f00..28f2324c79ef190d3357393546d80f5caff03546 100644 (file)
@@ -1,11 +1,11 @@
 #include "malloc.h"
 #include <stdint.h>
-#include "debug.h"
-#include "lib.h"
-#include "list.h"
-#include "synch.h"
 #include "mmu.h"
 #include "palloc.h"
+#include "synch.h"
+#include "lib/debug.h"
+#include "lib/lib.h"
+#include "lib/list.h"
 
 /* A simple implementation of malloc().