From 5038992465876ba0985372b64fb451f1e4fdb8fc Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 4 Oct 2012 14:14:52 +0200 Subject: [PATCH] lua: use relative paths for includes instead of system-wide --- lua/uloop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/uloop.c b/lua/uloop.c index 41ffff5..900e140 100644 --- a/lua/uloop.c +++ b/lua/uloop.c @@ -22,8 +22,8 @@ #include #include -#include -#include +#include "../uloop.h" +#include "../list.h" struct lua_uloop_timeout { struct uloop_timeout t;