From 5b0efd8db2f03a48ca4acbd17b68a4d8771b3e7f Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 10 Mar 2023 18:02:02 +0000 Subject: Add missing 'static' on dputs(). This fixes a build failure due to -Wmissing-prototypes if you build with -DDEBUGGING. --- windows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'windows.c') diff --git a/windows.c b/windows.c index e4942f4..7287478 100644 --- a/windows.c +++ b/windows.c @@ -73,7 +73,7 @@ static FILE *debug_fp = NULL; static HANDLE debug_hdl = INVALID_HANDLE_VALUE; static int debug_got_console = 0; -void dputs(char *buf) +static void dputs(char *buf) { /*DWORD dw; -- cgit v1.1