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