#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; }