summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-05-18 23:16:46 +0100
committerVincent Sanders <vince@kyllikki.org>2014-05-18 23:17:15 +0100
commit315877c82245f33d20dee0850d27c29b0f4ea666 (patch)
treef26314780124c12601cd6ac891b10bba3a28ba75 /desktop
parentcb978fe47000560301fcc809fdd6c63d338bc6d8 (diff)
downloadnetsurf-315877c82245f33d20dee0850d27c29b0f4ea666.tar.gz
netsurf-315877c82245f33d20dee0850d27c29b0f4ea666.tar.bz2
reduce uncessary include usage
Diffstat (limited to 'desktop')
-rw-r--r--desktop/knockout.c7
-rw-r--r--desktop/plotters.h5
2 files changed, 8 insertions, 4 deletions
diff --git a/desktop/knockout.c b/desktop/knockout.c
index 0385ee80b..fa827cb39 100644
--- a/desktop/knockout.c
+++ b/desktop/knockout.c
@@ -64,10 +64,13 @@
#include <assert.h>
#include <string.h>
-#include "desktop/knockout.h"
-#include "desktop/plotters.h"
+#include <stdio.h>
+
#include "image/bitmap.h"
#include "utils/log.h"
+#include "content/content.h"
+#include "desktop/knockout.h"
+#include "desktop/plotters.h"
/* Define to enable knockout debug */
#undef KNOCKOUT_DEBUG
diff --git a/desktop/plotters.h b/desktop/plotters.h
index 448cedef5..c34692433 100644
--- a/desktop/plotters.h
+++ b/desktop/plotters.h
@@ -24,8 +24,9 @@
#define _NETSURF_DESKTOP_PLOTTERS_H_
#include <stdbool.h>
-#include "css/css.h"
-#include "content/content.h"
+#include <stdio.h>
+
+#include "utils/types.h"
#include "desktop/plot_style.h"
struct bitmap;