aboutsummaryrefslogtreecommitdiff
path: root/windows.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2023-03-10 18:02:02 +0000
committerSimon Tatham <anakin@pobox.com>2023-03-10 18:46:06 +0000
commit5b0efd8db2f03a48ca4acbd17b68a4d8771b3e7f (patch)
treeb22cbb8170ff27d4dfe401af4cc555aabb5e7c00 /windows.c
parent01569005e325fc85e4a23fc050b7406789730444 (diff)
downloadpuzzles-5b0efd8db2f03a48ca4acbd17b68a4d8771b3e7f.zip
puzzles-5b0efd8db2f03a48ca4acbd17b68a4d8771b3e7f.tar.gz
puzzles-5b0efd8db2f03a48ca4acbd17b68a4d8771b3e7f.tar.bz2
puzzles-5b0efd8db2f03a48ca4acbd17b68a4d8771b3e7f.tar.xz
Add missing 'static' on dputs().
This fixes a build failure due to -Wmissing-prototypes if you build with -DDEBUGGING.
Diffstat (limited to 'windows.c')
-rw-r--r--windows.c2
1 files changed, 1 insertions, 1 deletions
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;