diff options
author | Ran Benita <ran234@gmail.com> | 2012-09-16 14:45:32 +0300 |
---|---|---|
committer | Ran Benita <ran234@gmail.com> | 2012-09-16 15:20:18 +0300 |
commit | b21107056e0540489669bb35fcb3abe1b5b46ecd (patch) | |
tree | f718e6ef359f1d2e75e3d0723e91b7f9bf5beff1 /test/context.c | |
parent | e670d084a6b4431de2ef3b5395c1473ba4b73725 (diff) | |
download | libxkbcommon-b21107056e0540489669bb35fcb3abe1b5b46ecd.tar.gz libxkbcommon-b21107056e0540489669bb35fcb3abe1b5b46ecd.tar.bz2 libxkbcommon-b21107056e0540489669bb35fcb3abe1b5b46ecd.zip |
Organize src/ and test/ headers
- Add context.h and move context-related functions from xkb-priv.h to
it.
- Move xkb_context definition back to context.c.
- Add keysym.h and move keysym upper/lower/keypad from xkb-priv.h to it.
- Rename xkb-priv.h to map.h since it only contains keymap-related
definitions and declarations now.
- Remove unnecessary includes and some and some other small cleanups.
Signed-off-by: Ran Benita <ran234@gmail.com>
Diffstat (limited to 'test/context.c')
-rw-r--r-- | test/context.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/context.c b/test/context.c index d6acd05..e151dd0 100644 --- a/test/context.c +++ b/test/context.c @@ -23,10 +23,8 @@ * Author: Daniel Stone <daniel@fooishbar.org> */ -#include <assert.h> - -#include "xkbcommon/xkbcommon.h" #include "test.h" +#include "context.h" int main(void) |