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_exit.c | |
parent | c02828640ebfa854c7ba55d1bab6fc6ba128bfc9 (diff) |
type func(...) -> type\nfunc(...) for function definitions
Diffstat (limited to 'lib/libpthread/uthread/uthread_exit.c')
-rw-r--r-- | lib/libpthread/uthread/uthread_exit.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libpthread/uthread/uthread_exit.c b/lib/libpthread/uthread/uthread_exit.c index 27ed0903ea6..91f41343583 100644 --- a/lib/libpthread/uthread/uthread_exit.c +++ b/lib/libpthread/uthread/uthread_exit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uthread_exit.c,v 1.16 2002/10/30 19:11:56 marc Exp $ */ +/* $OpenBSD: uthread_exit.c,v 1.17 2002/11/07 02:56:20 marc Exp $ */ /* * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au> * All rights reserved. @@ -42,7 +42,8 @@ #include <pthread.h> #include "pthread_private.h" -void _exit(int status) +void +_exit(int status) { int flags; int i; |