diff options
Diffstat (limited to 'src/stdio/dprintf.c')
-rw-r--r-- | src/stdio/dprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/dprintf.c b/src/stdio/dprintf.c index fa28322f..93082ee7 100644 --- a/src/stdio/dprintf.c +++ b/src/stdio/dprintf.c @@ -1,7 +1,7 @@ #include <stdio.h> #include <stdarg.h> -int dprintf(int fd, const char *fmt, ...) +int dprintf(int fd, const char *restrict fmt, ...) { int ret; va_list ap; |