fix bug in dladdr that prevented resolving addresses in the PLT
[oweals/musl.git] / src / stdio / setbuf.c
index 205afcfe69130da23faaddc0cb0408116af15b9c..74ad7834ae59f20b8a9c4e25ff471313e6776e24 100644 (file)
@@ -1,6 +1,6 @@
-#include "stdio_impl.h"
+#include <stdio.h>
 
-void setbuf(FILE *f, char *buf)
+void setbuf(FILE *restrict f, char *restrict buf)
 {
        setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
 }