aboutsummaryrefslogtreecommitdiffstats
path: root/sway/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/util.c')
-rw-r--r--sway/util.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/util.c b/sway/util.c
index 25aeb9f4..9a59ddf9 100644
--- a/sway/util.c
+++ b/sway/util.c
@@ -1,3 +1,5 @@
1#include "util.h"
2
1int wrap(int i, int max) { 3int wrap(int i, int max) {
2 return ((i % max) + max) % max; 4 return ((i % max) + max) % max;
3} 5}