Chromium Code Reviews| Index: fusl/src/thread/clone.c |
| diff --git a/fusl/src/thread/clone.c b/fusl/src/thread/clone.c |
| index be80c8ea4800d58f50526b842d864bb2e2e0804e..f25ae47045c1b27fddf6891678541193d403696c 100644 |
| --- a/fusl/src/thread/clone.c |
| +++ b/fusl/src/thread/clone.c |
| @@ -1,7 +1,6 @@ |
| #include <errno.h> |
| #include "pthread_impl.h" |
| -int __clone(int (*func)(void *), void *stack, int flags, void *arg, ...) |
| -{ |
| - return -ENOSYS; |
| +int __clone(int (*func)(void*), void* stack, int flags, void* arg, ...) { |
| + return -ENOSYS; |
| } |