Make LEN macro consistent with other suckless repos

Signed-off-by: drkhsh <me@drkhsh.at>
This commit is contained in:
planet36 2021-04-13 12:43:18 -04:00 committed by drkhsh
parent 87c3dd2c36
commit c432c981df
1 changed files with 1 additions and 1 deletions

2
util.h
View File

@ -3,7 +3,7 @@
extern char buf[1024];
#define LEN(x) (sizeof (x) / sizeof *(x))
#define LEN(x) (sizeof(x) / sizeof((x)[0]))
extern char *argv0;