diff options
author | rsc <rsc> | 2007-08-27 23:26:33 +0000 |
---|---|---|
committer | rsc <rsc> | 2007-08-27 23:26:33 +0000 |
commit | 558ab49f13634d972e956020a12d14fdb1416b94 (patch) | |
tree | 02a4424e94f3401b8071dbfb2fe50212da17c35c /umalloc.c | |
parent | 99b11b6c64c17b94288c659e9398261e69a0cf75 (diff) | |
download | xv6-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |