Skip to content

Commit 0c67372

Browse files
Voxelbkuhls
authored andcommitted
scp: fix build with gcc >= 14.x
Fixes build errors seen with gcc 14.x: src/scp.c: In function ‘sink’: src/scp.c:1214:32: error: implicit declaration of function ‘ascii_isdigit’ [-Wimplicit-function-declaration] src/scp.c: In function ‘okname’: src/scp.c:1501:22: error: implicit declaration of function ‘ascii_isalpha’ [-Wimplicit-function-declaration] Patch provided by SVoxel: #473 Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
1 parent 7244268 commit 0c67372

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/scp.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
#include "compat.h"
8282
#include "scpmisc.h"
8383
#include "progressmeter.h"
84+
#include "dbutil.h"
8485

8586
void bwlimit(int);
8687

0 commit comments

Comments
 (0)