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/child_subreaper_existing_child.c')
-rw-r--r--test/zdtm/static/child_subreaper_existing_child.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/zdtm/static/child_subreaper_existing_child.c b/test/zdtm/static/child_subreaper_existing_child.c
index 28e9dbb8a..8291aba08 100644
--- a/test/zdtm/static/child_subreaper_existing_child.c
+++ b/test/zdtm/static/child_subreaper_existing_child.c
@@ -24,7 +24,7 @@ struct shared {
} *sh;
-int orphan()
+int orphan(void)
{
/* Return the control back to MAIN worker to do C/R */
futex_set_and_wake(&sh->fstate, TEST_CRIU);
@@ -36,7 +36,7 @@ int orphan()
return 0;
}
-int helper()
+int helper(void)
{
int pid;
@@ -52,7 +52,7 @@ int helper()
return 0;
}
-int subreaper()
+int subreaper(void)
{
int pid, ret, status;