Fix strict-prototypes GCC warning

As seen in the MinGW autobuilds. Caused by commit
f26bc29cfec0be84c67cf74065cf8e5e78fd68b7.
diff --git a/lib/easy.c b/lib/easy.c
index b1e264e..a3ec46f 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -94,7 +94,7 @@
 #ifdef WIN32
 
 /* win32_cleanup() is the opposite of win32_init() */
-static void win32_cleanup()
+static void win32_cleanup(void)
 {
 #ifdef USE_WINDOWS_SSPI
   Curl_sspi_global_cleanup();