Begin work on supporting clone
diff --git a/syscall.c b/syscall.c
index 2b23471..19739a8 100644
--- a/syscall.c
+++ b/syscall.c
@@ -531,12 +531,13 @@
 #ifdef SYS_vfork
 	case SYS_vfork:
 #endif
-#ifdef SYS_clone
-	case SYS_clone:
-#endif
 		internal_fork(tcp);
 		break;
-
+#ifdef SYS_clone
+	case SYS_clone:
+		internal_clone(tcp);
+		break;
+#endif
 #ifdef SYS_execv
 	case SYS_execv:
 #endif