aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/dwm/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/cmd/dwm/util.c')
-rw-r--r--sys/cmd/dwm/util.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/sys/cmd/dwm/util.c b/sys/cmd/dwm/util.c
deleted file mode 100644
index 1875d89..0000000
--- a/sys/cmd/dwm/util.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "dwm.h"
-
-void
-fatal(byte *fmt, ...)
-{
- va_list args;
- va_start(args, fmt);
-
- verrorf(fmt, args);
-
- va_end(args);
- exit(1);
-}
-
-void
-scale(struct wlr_box *box, float by)
-{
- box->x *= by;
- box->y *= by;
- box->height *= by;
- box->width *= by;
-}