Add missing MAX macros, ensure that i3 can be compiled without pango
This commit is contained in:
committed by
Kacper Kowalik
parent
d68387bf5d
commit
301320585e
@ -11,6 +11,10 @@
|
||||
*/
|
||||
#include "all.h"
|
||||
|
||||
#ifndef MAX
|
||||
#define MAX(x, y) ((x) > (y) ? (x) : (y))
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Calculates sum of heights and sum of widths of all currently active outputs
|
||||
*
|
||||
|
Reference in New Issue
Block a user