git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@239732
13f79535-47bb-0310-9956-
ffa450edef68
/**
* Loop through the global ap_listen_rec list and close each of the sockets.
*/
-AP_DECLARE_NONSTD(void) ap_close_listeners();
+AP_DECLARE_NONSTD(void) ap_close_listeners(void);
/* Although these functions are exported from libmain, they are not really
* public functions. These functions are actually called while parsing the
return num_listeners;
}
-AP_DECLARE_NONSTD(void) ap_close_listeners() {
+AP_DECLARE_NONSTD(void) ap_close_listeners(void)
+{
ap_listen_rec *lr;
for (lr = ap_listeners; lr; lr = lr->next) {