diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 2002-11-07 02:56:21 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 2002-11-07 02:56:21 +0000 |
commit | 213264c1bc5c250790d78dd190c2d5511ba7d163 (patch) | |
tree | 25a583c54cb1849b82279491a1e3e95bd8b445b7 /lib/libpthread/uthread/uthread_attr_destroy.c | |
parent | c02828640ebfa854c7ba55d1bab6fc6ba128bfc9 (diff) |
type func(...) -> type\nfunc(...) for function definitions
Diffstat (limited to 'lib/libpthread/uthread/uthread_attr_destroy.c')
-rw-r--r-- | lib/libpthread/uthread/uthread_attr_destroy.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libpthread/uthread/uthread_attr_destroy.c b/lib/libpthread/uthread/uthread_attr_destroy.c index feb0c8309f0..a71b00eea6e 100644 --- a/lib/libpthread/uthread/uthread_attr_destroy.c +++ b/lib/libpthread/uthread/uthread_attr_destroy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uthread_attr_destroy.c,v 1.3 1999/11/25 07:01:30 d Exp $ */ +/* $OpenBSD: uthread_attr_destroy.c,v 1.4 2002/11/07 02:56:20 marc Exp $ */ /* * Copyright (c) 1996 John Birrell <jb@cimlogic.com.au>. * All rights reserved. @@ -38,7 +38,8 @@ #include <pthread.h> #include "pthread_private.h" -int pthread_attr_destroy(pthread_attr_t *attr) +int +pthread_attr_destroy(pthread_attr_t *attr) { int ret; |