summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-04-18 20:58:49 +0100
committerVincent Sanders <vince@kyllikki.org>2016-04-18 20:58:49 +0100
commit34f6aa13234a618c3b1add75899af2ca1f6a08e9 (patch)
treeb656c6a5c81b36fbcfe202252921299c030f0e91 /content
parentd2dd574106554db31aa4ed7a53dc3dcf80c64a9a (diff)
downloadnetsurf-34f6aa13234a618c3b1add75899af2ca1f6a08e9.tar.gz
netsurf-34f6aa13234a618c3b1add75899af2ca1f6a08e9.tar.bz2
clean up header usage in content hnadling core
Diffstat (limited to 'content')
-rw-r--r--content/content.c30
1 files changed, 10 insertions, 20 deletions
diff --git a/content/content.c b/content/content.c
index 3d06f8e07..d20695613 100644
--- a/content/content.c
+++ b/content/content.c
@@ -16,33 +16,23 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-/** \file
+/**
+ * \file
* Content handling implementation.
*/
-#include <assert.h>
#include <inttypes.h>
-#include <stdarg.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <strings.h>
-#include <time.h>
-
-#include "utils/config.h"
-#include "content/content_protected.h"
-#include "content/hlcache.h"
-#include "image/bitmap.h"
-#include "desktop/knockout.h"
-#include "desktop/browser.h"
-#include "desktop/plotters.h"
-#include "desktop/gui_internal.h"
-#include "utils/nsoption.h"
-#include "utils/http.h"
#include "utils/log.h"
#include "utils/messages.h"
-#include "utils/utils.h"
+#include "desktop/plotters.h"
+#include "desktop/knockout.h"
+#include "desktop/gui_internal.h"
+#include "desktop/browser.h"
+#include "image/bitmap.h"
+
+#include "content/content_protected.h"
+#include "content/hlcache.h"
#define URL_FMT_SPC "%.140s"