summaryrefslogtreecommitdiff
path: root/printf.c
diff options
context:
space:
mode:
no /* */ comments
Diffstat (limited to 'printf.c')
-rw-r--r--printf.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/printf.c b/printf.c
index e9ade11..e013346 100644
--- a/printf.c
+++ b/printf.c
@@ -33,9 +33,7 @@ printint(int fd, int xx, int base, int sgn)
putc(fd, buf[i]);
}
-/*
- * printf to the stdout. only understands %d, %x, %p, %s.
- */
+// Print to the given fd. Only understands %d, %x, %p, %s.
void
printf(int fd, char *fmt, ...)
{