Browse Source

revert unintended commit

Mike Frysinger 18 years ago
parent
commit
10d97e5ec6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/unistd/clone_cruft.h

+ 1 - 1
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__