Cleanup option keyword/environment substitution
[fio.git] / log.h
diff --git a/log.h b/log.h
index 874c1d9d5aa54a237bd2ee747b027ca5387a7e37..fdf3d7b19aed3d3981b166c32339fbd7bb596f79 100644 (file)
--- a/log.h
+++ b/log.h
@@ -2,6 +2,7 @@
 #define FIO_LOG_H
 
 #include <stdio.h>
+#include <stdarg.h>
 
 extern FILE *f_out;
 extern FILE *f_err;
@@ -10,5 +11,6 @@ extern int log_err(const char *format, ...);
 extern int log_info(const char *format, ...);
 extern int log_local(const char *format, ...);
 extern int log_valist(const char *str, va_list);
+extern int log_local_buf(const char *buf, size_t);
 
 #endif