configure: add gettid() test
[fio.git] / lib / output_buffer.h
index 15ee00566e7f6784c347b0c997f91a71134f5963..389ed5b7bc0a039d20b45ef52672a2c48f8650ba 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef FIO_OUTPUT_BUFFER_H
 #define FIO_OUTPUT_BUFFER_H
 
-#include <unistd.h>
+#include <stddef.h>
 
 struct buf_output {
        char *buf;
@@ -12,6 +12,5 @@ struct buf_output {
 void buf_output_init(struct buf_output *out);
 void buf_output_free(struct buf_output *out);
 size_t buf_output_add(struct buf_output *out, const char *buf, size_t len);
-void buf_output_clear(struct buf_output *out);
 
 #endif