summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-02-22 03:35:31 +0000
committerMike Frysinger <vapier@gentoo.org>2006-02-22 03:35:31 +0000
commit10d97e5ec69269f6039c66a4d5b4d0e3bb2fccd7 (patch)
treeadd18bfc462b9f68d6180cfc0d8a00a65eb9ca24 /test
parentc0eafa7e95363d6539e60398b1c5bf5555981f7e (diff)
revert unintended commit
Diffstat (limited to 'test')
-rw-r--r--test/unistd/clone_cruft.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unistd/clone_cruft.h b/test/unistd/clone_cruft.h
index ec4887aaf..b6a395d06 100644
--- a/test/unistd/clone_cruft.h
+++ b/test/unistd/clone_cruft.h
@@ -9,7 +9,7 @@
extern int __clone2 (int (*__fn) (void *__arg), void *__child_stack_base,
size_t __child_stack_size, int __flags, void *__arg, ...);
# define do_clone(fn, stack, flags, arg) \
- clone2(fn, stack, crappy_sizeof(stack), flags, arg, NULL, NULL, NULL)
+ __clone2(fn, stack, crappy_sizeof(stack), flags, arg, NULL, NULL, NULL)
#elif defined __hppa__