diff options
author | Drew DeVault <[email protected]> | 2016-09-01 08:18:37 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2016-09-01 08:18:37 -0400 |
commit | 416417a54c5875abcdc257b6ad10ff086c35eefc (patch) | |
tree | 00f20884a05d05e620a4a24bba8595557cd41405 /common/util.c | |
parent | 729fdf7d9186ceba0f84b87edfd473642964227f (diff) |
Reorganize includes
Diffstat (limited to 'common/util.c')
-rw-r--r-- | common/util.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/common/util.c b/common/util.c index f0b0fdf0..f2302676 100644 --- a/common/util.c +++ b/common/util.c @@ -1,10 +1,13 @@ #include <math.h> +#include <stdint.h> #include <stdio.h> -#include <string.h> #include <stdlib.h> +#include <string.h> +#include <wlc/wlc.h> +#include <xkbcommon/xkbcommon-names.h> +#include "log.h" #include "readline.h" #include "util.h" -#include "log.h" int wrap(int i, int max) { return ((i % max) + max) % max; |