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_single_np.c | |
parent | c02828640ebfa854c7ba55d1bab6fc6ba128bfc9 (diff) |
type func(...) -> type\nfunc(...) for function definitions
Diffstat (limited to 'lib/libpthread/uthread/uthread_single_np.c')
-rw-r--r-- | lib/libpthread/uthread/uthread_single_np.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libpthread/uthread/uthread_single_np.c b/lib/libpthread/uthread/uthread_single_np.c index a1820b311bc..242ebd92fa8 100644 --- a/lib/libpthread/uthread/uthread_single_np.c +++ b/lib/libpthread/uthread/uthread_single_np.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uthread_single_np.c,v 1.4 2001/08/21 19:24:53 fgsch Exp $ */ +/* $OpenBSD: uthread_single_np.c,v 1.5 2002/11/07 02:56:20 marc Exp $ */ /* * Copyright (c) 1996 John Birrell <jb@cimlogic.com.au>. * All rights reserved. @@ -37,7 +37,8 @@ #include <pthread.h> #include "pthread_private.h" -int pthread_single_np() +int +pthread_single_np() { struct pthread *curthread = _get_curthread(); |