diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-03-20 04:16:21 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-03-20 04:16:21 +0000 |
commit | 94652af09178a980c502eb9753c83c843892c244 (patch) | |
tree | 1820d177724bba9c818633ac331179912f4d077d /lib/librthread/rthread_attr.c | |
parent | 3eac7d5a4e4cec966a9176bc4f010c5539ea2fa9 (diff) |
Clean up unnecessary prototypes. Pointed out by brad@
Diffstat (limited to 'lib/librthread/rthread_attr.c')
-rw-r--r-- | lib/librthread/rthread_attr.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/librthread/rthread_attr.c b/lib/librthread/rthread_attr.c index 17dc0794c9f..384893a1d95 100644 --- a/lib/librthread/rthread_attr.c +++ b/lib/librthread/rthread_attr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rthread_attr.c,v 1.17 2012/03/02 23:11:57 fgsch Exp $ */ +/* $OpenBSD: rthread_attr.c,v 1.18 2012/03/20 04:16:20 guenther Exp $ */ /* * Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org> * All Rights Reserved. @@ -30,12 +30,6 @@ #include "rthread.h" /* - * temp: these need to be added to pthread.h - */ -int pthread_attr_getguardsize(const pthread_attr_t *, size_t *); -int pthread_attr_setguardsize(pthread_attr_t *, size_t); - -/* * Note: stack_size + guard_size == total stack used * * pthread_attr_init MUST be called before any other attribute function |