]> mj.ucw.cz Git - leo.git/blobdiff - sym.c
Changed order of includes
[leo.git] / sym.c
diff --git a/sym.c b/sym.c
index 6a1436437dd4c96961b6db48ce234635d89548c0..a98d0ba0c809fc31e67c5a234136d30490f11e2f 100644 (file)
--- a/sym.c
+++ b/sym.c
@@ -4,18 +4,17 @@
  *     (c) 2014--2015 Martin Mares <mj@ucw.cz>
  */
 
-#include <ucw/lib.h>
+#include "leo.h"
+#include "osm.h"
+#include "style.h"
+#include "sym.h"
+
 #include <ucw/gary.h>
 #include <ucw/mempool.h>
 #include <ucw/stkstring.h>
 
 #include <stdio.h>
 
-#include "leo.h"
-#include "osm.h"
-#include "style.h"
-#include "sym.h"
-
 #undef CLAMP           // FIXME: Fix in libucw?
 #define CLAMP(x,min,max) ({ typeof(x) _t=x; (_t < min) ? min : (_t > max) ? max : _t; })       /** Clip a number @x to interval [@min,@max] **/