Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/zdtm/static/session02.c')
-rw-r--r--test/zdtm/static/session02.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/zdtm/static/session02.c b/test/zdtm/static/session02.c
index 37f245d2e..f5c81df16 100644
--- a/test/zdtm/static/session02.c
+++ b/test/zdtm/static/session02.c
@@ -25,7 +25,7 @@ struct process *processes;
int nr_processes = 20;
int current = 0;
-static void cleanup()
+static void cleanup(void)
{
int i;
@@ -55,9 +55,9 @@ struct command
int arg2;
};
-static void handle_command();
+static void handle_command(void);
-static void mainloop()
+static void mainloop(void)
{
while (1)
handle_command();
@@ -100,7 +100,7 @@ static int make_child(int id, int flags)
return cid;
}
-static void handle_command()
+static void handle_command(void)
{
int sk = processes[current].sks[0], ret, status = 0;
struct command cmd;