From 5ea195692d4e18c3fe317bcc4428777d8adab3a3 Mon Sep 17 00:00:00 2001 From: Austin Foxley Date: Fri, 11 Dec 2009 00:51:06 -0800 Subject: nptl: fix even more old style declarations Signed-off-by: Austin Foxley --- libpthread/nptl/pthread_create.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'libpthread/nptl/pthread_create.c') diff --git a/libpthread/nptl/pthread_create.c b/libpthread/nptl/pthread_create.c index 81da5b93a..903e28dc6 100644 --- a/libpthread/nptl/pthread_create.c +++ b/libpthread/nptl/pthread_create.c @@ -55,8 +55,7 @@ unsigned int __nptl_nthreads = 1; struct pthread * internal_function -__find_in_stack_list (pd) - struct pthread *pd; +__find_in_stack_list (struct pthread *pd) { list_t *entry; struct pthread *result = NULL; @@ -335,11 +334,11 @@ static const struct pthread_attr default_attr = int -__pthread_create_2_1 (newthread, attr, start_routine, arg) - pthread_t *newthread; - const pthread_attr_t *attr; - void *(*start_routine) (void *); - void *arg; +__pthread_create_2_1 ( + pthread_t *newthread, + const pthread_attr_t *attr, + void *(*start_routine) (void *), + void *arg) { STACK_VARIABLES; -- cgit v1.2.3