summaryrefslogtreecommitdiff
path: root/umalloc.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 /umalloc.c
parent99b11b6c64c17b94288c659e9398261e69a0cf75 (diff)
downloadxv6-labs-558ab49f13634d972e956020a12d14fdb1416b94.tar.gz
xv6-labs-558ab49f13634d972e956020a12d14fdb1416b94.tar.bz2
xv6-labs-558ab49f13634d972e956020a12d14fdb1416b94.zip
delete unnecessary #include lines
Diffstat (limited to 'umalloc.c')
-rw-r--r--umalloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/umalloc.c b/umalloc.c
index 30f970d..401ee6a 100644
--- a/umalloc.c
+++ b/umalloc.c
@@ -3,8 +3,8 @@
#include "user.h"
#include "param.h"
-// Memory allocator by Kernighan and Ritchie, The C programming Language,
-// 2nd ed. Section 8.7.
+// Memory allocator by Kernighan and Ritchie,
+// The C programming Language, 2nd ed. Section 8.7.
typedef long Align;