From 74e451e7be3e2b2894e666af70609df88277d318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20D=C3=B8rum?= Date: Tue, 13 Oct 2020 08:12:32 +0200 Subject: [PATCH] repl: use fgets by default --- repl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repl.c b/repl.c index ac03cea..021a696 100644 --- a/repl.c +++ b/repl.c @@ -3,7 +3,7 @@ #include #include -#ifndef NO_READLINE +#ifdef USE_READLINE #include #include #else