ls: avoid a compilation warning

This commit is contained in:
Pierre Pronchery 2020-12-09 16:34:53 +01:00
parent 972130f22f
commit 2368fa4e02

View File

@ -34,7 +34,9 @@
#endif #endif
/* macros */ /* macros */
#define MAX(a, b) ((a) > (b) ? (a) : (b)) #ifndef MAX
# define MAX(a, b) ((a) > (b) ? (a) : (b))
#endif
/* ls */ /* ls */