unify style for returning pointers
[c11tester.git] / threads.cc
index 830ea1a484159c9df61b641994781d30f97cb989..be384fb2889b1fdc85f16ae89e6274b8de833636 100644 (file)
@@ -10,7 +10,7 @@
 
 #define STACK_SIZE (1024 * 1024)
 
-static void *stack_allocate(size_t size)
+static void * stack_allocate(size_t size)
 {
        return malloc(size);
 }
@@ -20,7 +20,7 @@ static void stack_free(void *stack)
        free(stack);
 }
 
-Thread *thread_current(void)
+Thread * thread_current(void)
 {
        return model->scheduler->get_current_thread();
 }