diff options
Diffstat (limited to 'create.c')
-rw-r--r-- | create.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -8,8 +8,9 @@ #include "pthread.h" -int pthread_create(pthread_t *thread, const pthread_attr_t *attr, - void * (*start_routine) (void *), void * arg) +int +pthread_create(pthread_t *thread, const pthread_attr_t *attr, + void * (*start_routine) (void *), void * arg) { /* Call Win32 CreateThread. Map attributes as correctly as possible. |