diff options
Diffstat (limited to 'printf.c')
-rw-r--r-- | printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ printint(int fd, int xx, int base, int sgn) // Print to the given fd. Only understands %d, %x, %p, %s. void -printf(int fd, char *fmt, ...) +printf(int fd, const char *fmt, ...) { char *s; int c, i, state; |