diff options
Diffstat (limited to 'winsup/cygwin/include/pthread.h')
-rw-r--r-- | winsup/cygwin/include/pthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/include/pthread.h b/winsup/cygwin/include/pthread.h index 1261ddc5f..486635da7 100644 --- a/winsup/cygwin/include/pthread.h +++ b/winsup/cygwin/include/pthread.h @@ -101,7 +101,7 @@ int pthread_cancel (pthread_t); void pthread_cleanup_push (void (*routine)(void*), void *arg); void pthread_cleanup_pop (int execute); */ -typedef void __cleanup_routine_type (void *); +typedef void (*__cleanup_routine_type) (void *); #define pthread_cleanup_push(fn, arg) { __cleanup_routine_type __cleanup_routine=fn; \ void *__cleanup_param=arg; |