summaryrefslogtreecommitdiff
path: root/desktop/knockout.h
diff options
context:
space:
mode:
authorJohn Tytgat <joty@netsurf-browser.org>2008-07-29 23:19:24 +0000
committerJohn Tytgat <joty@netsurf-browser.org>2008-07-29 23:19:24 +0000
commit23a546717848fd664abbfcb14d05916ff4375275 (patch)
tree097f5a47600d3a08081b79d59934043a41b900a5 /desktop/knockout.h
parent9ede9ab3762cc6f5a09d8c8ef022922d9caec2ec (diff)
downloadnetsurf-23a546717848fd664abbfcb14d05916ff4375275.tar.gz
netsurf-23a546717848fd664abbfcb14d05916ff4375275.tar.bz2
Use static for variables local to one source file.
svn path=/trunk/netsurf/; revision=4812
Diffstat (limited to 'desktop/knockout.h')
-rw-r--r--desktop/knockout.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/desktop/knockout.h b/desktop/knockout.h
index 9470bcf77..a3951a501 100644
--- a/desktop/knockout.h
+++ b/desktop/knockout.h
@@ -20,11 +20,15 @@
* Knockout rendering (interface).
*/
+#ifndef _NETSURF_DESKTOP_KNOCKOUT_H_
+#define _NETSURF_DESKTOP_KNOCKOUT_H_
+
#include "desktop/plotters.h"
bool knockout_plot_start(struct plotter_table *plotter);
bool knockout_plot_end(void);
-
extern const struct plotter_table knockout_plotters;
+
+#endif