From 0bf733ec1780acd7d7f0122559029e09001b840e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 2 Feb 2025 12:03:48 +0900 Subject: [PATCH] Fix FTBFS with gcc 15. This resolves issue #44 Signed-off-by: Michele Calgaro --- src/libs/sqlite2/shell.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/libs/sqlite2/shell.c b/src/libs/sqlite2/shell.c index 2d99603a..dd3d9456 100644 --- a/src/libs/sqlite2/shell.c +++ b/src/libs/sqlite2/shell.c @@ -25,6 +25,9 @@ # include # include # include +#else +/* Make sure isatty() has a prototype */ +extern int isatty(int); #endif #if defined(HAVE_READLINE) && HAVE_READLINE==1 @@ -38,10 +41,6 @@ # define stifle_history(X) #endif -/* Make sure isatty() has a prototype. -*/ -extern int isatty(); - /* ** The following is the open SQLite database. We make a pointer ** to this database a static variable so that it can be accessed