mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-25 04:09:31 +03:00
Fixed old-style functions definitions
This commit is contained in:
@@ -328,7 +328,7 @@ answer_to_connection (void *cls,
|
||||
|
||||
|
||||
int
|
||||
main ()
|
||||
main (void)
|
||||
{
|
||||
struct MHD_Daemon *daemon;
|
||||
|
||||
|
||||
@@ -46,7 +46,7 @@ answer_to_connection (void *cls, struct MHD_Connection *connection,
|
||||
|
||||
|
||||
int
|
||||
main ()
|
||||
main (void)
|
||||
{
|
||||
struct MHD_Daemon *daemon;
|
||||
|
||||
|
||||
@@ -73,7 +73,7 @@ answer_to_connection (void *cls, struct MHD_Connection *connection,
|
||||
|
||||
|
||||
int
|
||||
main ()
|
||||
main (void)
|
||||
{
|
||||
struct MHD_Daemon *daemon;
|
||||
|
||||
|
||||
@@ -693,7 +693,7 @@ request_completed_callback (void *cls,
|
||||
* too long.
|
||||
*/
|
||||
static void
|
||||
expire_sessions ()
|
||||
expire_sessions (void)
|
||||
{
|
||||
struct Session *pos;
|
||||
struct Session *prev;
|
||||
|
||||
@@ -192,7 +192,7 @@ answer_to_connection (void *cls, struct MHD_Connection *connection,
|
||||
|
||||
|
||||
int
|
||||
main ()
|
||||
main (void)
|
||||
{
|
||||
struct MHD_Daemon *daemon;
|
||||
|
||||
|
||||
@@ -247,7 +247,7 @@ answer_to_connection (void *cls, struct MHD_Connection *connection,
|
||||
|
||||
|
||||
int
|
||||
main ()
|
||||
main (void)
|
||||
{
|
||||
struct MHD_Daemon *daemon;
|
||||
char *key_pem;
|
||||
|
||||
Reference in New Issue
Block a user