Fix -Wstring-prototypes warnings in _zoneinfo.c. (GH-21478)

diff --git a/Modules/_zoneinfo.c b/Modules/_zoneinfo.c
index a288349..319d6c7 100644
--- a/Modules/_zoneinfo.c
+++ b/Modules/_zoneinfo.c
@@ -2468,7 +2468,7 @@
 }
 
 static PyObject *
-new_weak_cache()
+new_weak_cache(void)
 {
     PyObject *weakref_module = PyImport_ImportModule("weakref");
     if (weakref_module == NULL) {
@@ -2482,7 +2482,7 @@
 }
 
 static int
-initialize_caches()
+initialize_caches(void)
 {
     // TODO: Move to a PyModule_GetState / PEP 573 based caching system.
     if (TIMEDELTA_CACHE == NULL) {