shithub: puzzles

Download patch

ref: 8c968483f8df7c30f78ff3998a397697a1699615
parent: 12b2608b241743314f177e73d8d73b72580d2948
author: Simon Tatham <anakin@pobox.com>
date: Mon Apr 24 05:31:18 EDT 2023

emcc.c: missing (void) in a function definition.

This isn't C++, ahem.

--- a/emcc.c
+++ b/emcc.c
@@ -909,7 +909,7 @@
     return js_savefile_read(buf, len);
 }
 
-void load_game()
+void load_game(void)
 {
     const char *err;