summaryrefslogtreecommitdiff
path: root/libpthread/nptl/pthread_create.c
diff options
context:
space:
mode:
authorAustin Foxley <austinf@cetoncorp.com>2009-12-11 00:51:06 -0800
committerAustin Foxley <austinf@cetoncorp.com>2009-12-11 00:51:06 -0800
commit5ea195692d4e18c3fe317bcc4428777d8adab3a3 (patch)
treebb1c764a63ac6040ad0c1b5624a4678d8707359d /libpthread/nptl/pthread_create.c
parent1a3ad45bb56f144b78139966b9a618675c871bb5 (diff)
nptl: fix even more old style declarations
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libpthread/nptl/pthread_create.c')
-rw-r--r--libpthread/nptl/pthread_create.c13
1 files changed, 6 insertions, 7 deletions
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;