python/isort: update to 6.0.0
[oi-userland.git] / components / library / libedit / patches / 02-min.patch
blob9ca7b1256bca79db4adb771664a97351fde1000b
1 There is no definition of a simple MIN macro
3 diff --git a/src/vis.c.original b/src/vis.c
4 index a454874..b60b59d 100644
5 --- a/src/vis.c.original
6 +++ b/src/vis.c
7 @@ -85,6 +85,8 @@ __weak_alias(strvisx,_strvisx)
8 #include <stdio.h>
9 #include <string.h>
11 +#define MIN(a,b) ((a<b)?(a):(b))
14 * The reason for going through the trouble to deal with character encodings
15 * in vis(3), is that we use this to safe encode output of commands. This