lol
1From 9f5d96a2b9a71ab539237d2dab4c54fc46fc5c5b Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= <corsepiu@corsepiu.home>
3Date: Thu, 18 Apr 2013 19:17:06 +0200
4Subject: [PATCH 10/10] GCC-4.8.0 fixes
5
6---
7 src/fonts/freetype.cpp | 6 +++---
8 1 file changed, 3 insertions(+), 3 deletions(-)
9
10diff --git a/src/fonts/freetype.cpp b/src/fonts/freetype.cpp
11index 760b88b..e705d3a 100644
12--- a/src/fonts/freetype.cpp
13+++ b/src/fonts/freetype.cpp
14@@ -32,18 +32,18 @@
15
16 20050613 mortene. */
17
18-#include "fonts/freetype.h"
19-
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif /* HAVE_CONFIG_H */
23
24-#include <stdlib.h>
25+#include <cstdlib>
26 #include <assert.h>
27
28 #include "glue/freetype.h"
29 #include "glue/GLUWrapper.h"
30
31+#include "fonts/freetype.h"
32+
33 /* ************************************************************************* */
34
35 #ifdef __cplusplus
36--
371.8.1.4
38