Fix clang build breakage ("arithmetic on a pointer to void").

Change-Id: Ia0953fc1cd0f8ea2d4423b3c6e34f6dc7a9f31e9
diff --git a/libc/bionic/pthread_create.cpp b/libc/bionic/pthread_create.cpp
index 179ae95..cc37f5a 100644
--- a/libc/bionic/pthread_create.cpp
+++ b/libc/bionic/pthread_create.cpp
@@ -77,7 +77,7 @@
       return;
     }
     stack_t ss;
-    ss.ss_sp = stack_base + PAGE_SIZE;
+    ss.ss_sp = reinterpret_cast<uint8_t*>(stack_base) + PAGE_SIZE;
     ss.ss_size = SIGNAL_STACK_SIZE - PAGE_SIZE;
     ss.ss_flags = 0;
     sigaltstack(&ss, NULL);