Re: [PATCH] include ctype.h for isdigit usage

2016-08-11 Thread Chet Ramey
On 8/11/16 5:52 AM, Mike Frysinger wrote: > --- > lib/readline/histexpand.c | 1 + > 1 file changed, 1 insertion(+) Thanks for the fix. Chet -- ``The lyf so short, the craft so long to lerne.'' - Chaucer ``Ars longa, vita brevis'' - Hippocrates Chet Ramey, UTech, CWRUc...@

[PATCH] include ctype.h for isdigit usage

2016-08-11 Thread Mike Frysinger
--- lib/readline/histexpand.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/readline/histexpand.c b/lib/readline/histexpand.c index 46a99aa62e30..13248db83048 100644 --- a/lib/readline/histexpand.c +++ b/lib/readline/histexpand.c @@ -26,6 +26,7 @@ #endif #include +#include #if d