fix pointer type mismatch and misplacement of const
[musl] / src / thread / clone.c
index e69de29..be80c8e 100644 (file)
@@ -0,0 +1,7 @@
+#include <errno.h>
+#include "pthread_impl.h"
+
+int __clone(int (*func)(void *), void *stack, int flags, void *arg, ...)
+{
+       return -ENOSYS;
+}