diff options
author | Magnus Holmgren <magnushol@gmail.com> | 2009-06-09 11:23:25 +0000 |
---|---|---|
committer | Magnus Holmgren <magnushol@gmail.com> | 2009-06-09 11:23:25 +0000 |
commit | a7621fcb8be98e8df99b5431065220067403a6f4 (patch) | |
tree | 38c264b8d99d8af03509ae19a761754a168ddc0e /apps/plugins/lua | |
parent | a8883659699efd80a59bfc157b276ecf7d330c61 (diff) |
Correct the includes; the old way broke parallel builds.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21234 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lua')
-rw-r--r-- | apps/plugins/lua/lbitlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/lua/lbitlib.c b/apps/plugins/lua/lbitlib.c index f7e4619377..dcb5b9d828 100644 --- a/apps/plugins/lua/lbitlib.c +++ b/apps/plugins/lua/lbitlib.c @@ -6,8 +6,8 @@ #include "config.h" -#include <lua.h> -#include <lauxlib.h> +#include "lua.h" +#include "lauxlib.h" #include <limits.h> |