summaryrefslogtreecommitdiff
path: root/kernel/console.c
diff options
context:
space:
mode:
authorRobert Morris <[email protected]>2019-07-24 13:33:43 -0400
committerRobert Morris <[email protected]>2019-07-24 13:33:43 -0400
commita77287e9244ae5dac7060c0b8817bc195325af0c (patch)
treefbf856ce361a9bc75abe4c484ecaff324607dd71 /kernel/console.c
parentb4f89bb5290cff5926e5a735487b024f8314e028 (diff)
downloadxv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.tar.gz
xv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.tar.bz2
xv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.zip
no more PAGEBREAK
Diffstat (limited to 'kernel/console.c')
-rw-r--r--kernel/console.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/console.c b/kernel/console.c
index 736d96a..fe21405 100644
--- a/kernel/console.c
+++ b/kernel/console.c
@@ -59,9 +59,6 @@ printptr(uint64 x) {
consputc(digits[x >> (sizeof(uint64) * 8 - 4)]);
}
-
-//PAGEBREAK: 50
-
// Print to the console. only understands %d, %x, %p, %s.
void
printf(char *fmt, ...)