aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2023-07-28 09:11:01 -0600
committerJens Axboe <axboe@kernel.dk>2023-07-28 09:11:01 -0600
commitf12affacf164b6e6997ee97d6ed66c35633414df (patch)
treeffa5b4c9fc0f202b1bfd69962fbd17001f82aa5e
parentb8aae2073e18775ab09f0b9d00f5c067d2358d79 (diff)
parent13229219c961d4b61d16b67d007a4c34de00c49b (diff)
downloadfio-f12affacf164b6e6997ee97d6ed66c35633414df.tar.gz
Merge branch 'master' of https://github.com/dpronin/fio
* 'master' of https://github.com/dpronin/fio: fix missing headers in multiple files
-rw-r--r--cairo_text_helpers.c2
-rw-r--r--cairo_text_helpers.h2
-rw-r--r--goptions.h2
-rw-r--r--log.c2
4 files changed, 8 insertions, 0 deletions
diff --git a/cairo_text_helpers.c b/cairo_text_helpers.c
index 19fb8e03c..5bdd60219 100644
--- a/cairo_text_helpers.c
+++ b/cairo_text_helpers.c
@@ -1,3 +1,5 @@
+#include "cairo_text_helpers.h"
+
#include <cairo.h>
#include <gtk/gtk.h>
#include <math.h>
diff --git a/cairo_text_helpers.h b/cairo_text_helpers.h
index 014001ad2..d0f52d51f 100644
--- a/cairo_text_helpers.h
+++ b/cairo_text_helpers.h
@@ -1,6 +1,8 @@
#ifndef CAIRO_TEXT_HELPERS_H
#define CAIRO_TEXT_HELPERS_H
+#include <cairo.h>
+
void draw_centered_text(cairo_t *cr, const char *font, double x, double y,
double fontsize, const char *text);
diff --git a/goptions.h b/goptions.h
index a225a8d1b..036175094 100644
--- a/goptions.h
+++ b/goptions.h
@@ -1,6 +1,8 @@
#ifndef GFIO_OPTIONS_H
#define GFIO_OPTIONS_H
+#include <gtk/gtk.h>
+
void gopt_get_options_window(GtkWidget *window, struct gfio_client *gc);
void gopt_init(void);
void gopt_exit(void);
diff --git a/log.c b/log.c
index 237bac288..df58ea07a 100644
--- a/log.c
+++ b/log.c
@@ -1,3 +1,5 @@
+#include "log.h"
+
#include <unistd.h>
#include <string.h>
#include <stdarg.h>