aboutsummaryrefslogtreecommitdiffstats
path: root/templates/wrapfuncs.h
diff options
context:
space:
mode:
Diffstat (limited to 'templates/wrapfuncs.h')
-rw-r--r--templates/wrapfuncs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/wrapfuncs.h b/templates/wrapfuncs.h
index 665da14..8088d09 100644
--- a/templates/wrapfuncs.h
+++ b/templates/wrapfuncs.h
@@ -14,3 +14,5 @@ static ${type} (*real_${name})(${decl_args});
/* int fork(void) */
static int wrap_fork(void);
static int (*real_fork)(void);
+static int wrap_clone(int (*fn)(void *), void *child_stack, int flags, void *arg, ...);
+static int (*real_clone)(int (*fn)(void *), void *child_stack, int flags, void *arg, ...);