fix bug in dladdr that prevented resolving addresses in the PLT
[oweals/musl.git] / src / stdio / vdprintf.c
index b41a3c74cecfc08c1f1ad9c2cdbfe6d24af321bf..c35d9b4fb0412fdefb2f4a07c198b8de8b451871 100644 (file)
@@ -5,7 +5,7 @@ static size_t wrap_write(FILE *f, const unsigned char *buf, size_t len)
        return __stdio_write(f, buf, len);
 }
 
-int vdprintf(int fd, const char *fmt, va_list ap)
+int vdprintf(int fd, const char *restrict fmt, va_list ap)
 {
        FILE f = {
                .fd = fd, .lbf = EOF, .write = wrap_write,