all repos — st @ c61b34e8e1883faba38f94b0c6775a47b1267e6f

st (suckless terminal) config

correct LENGTH()
Matthias-Christian Ott ott@enolink.de
commit

c61b34e8e1883faba38f94b0c6775a47b1267e6f

parent

693e2413c8c114c6a95327a609c28be643b9d582

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M std.cstd.c

@@ -13,7 +13,7 @@ #include <stdlib.h>

#include <string.h> #include <unistd.h> -#define LENGTH(x) (sizeof (x) / sizeof (x)[0]) +#define LENGTH(x) (sizeof(x) / sizeof((x)[0])) #define MAX(a,b) (((a) > (b)) ? (a) : (b)) #define MIN(a,b) (((a) < (b)) ? (a) : (b))