diff options
Diffstat (limited to 'printf.c')
-rw-r--r-- | printf.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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, ...) { |