diff options
author | 2003-07-31 21:48:02 +0000 | |
---|---|---|
committer | 2003-07-31 21:48:02 +0000 | |
commit | db3296cf5c1dd9058ceecc3a29fe4aaa0bd26000 (patch) | |
tree | 24a628e1f5d78508c3b3f7895685e06ffb25a794 /regress/lib/libpthread/socket/3/socket3.c | |
parent | delint (diff) | |
download | wireguard-openbsd-db3296cf5c1dd9058ceecc3a29fe4aaa0bd26000.tar.xz wireguard-openbsd-db3296cf5c1dd9058ceecc3a29fe4aaa0bd26000.zip |
various cleanups; david says results are same
Diffstat (limited to 'regress/lib/libpthread/socket/3/socket3.c')
-rw-r--r-- | regress/lib/libpthread/socket/3/socket3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/lib/libpthread/socket/3/socket3.c b/regress/lib/libpthread/socket/3/socket3.c index 5f17bf9571c..6df2e25f2a6 100644 --- a/regress/lib/libpthread/socket/3/socket3.c +++ b/regress/lib/libpthread/socket/3/socket3.c @@ -1,4 +1,4 @@ -/* $OpenBSD: socket3.c,v 1.2 2002/10/12 19:02:51 marc Exp $ */ +/* $OpenBSD: socket3.c,v 1.3 2003/07/31 21:48:06 deraadt Exp $ */ /* PUBLIC DOMAIN Oct 2002 <marc@snafu.org> */ /* Test blocking/non-blocking mode inheritance on accept */ @@ -20,7 +20,7 @@ * connect to the test port passed in arg, then close the connection * and return. */ -void * +static void * sock_connect(void *arg) { struct sockaddr_in sin; @@ -43,7 +43,7 @@ sock_connect(void *arg) * verify that the blocking mode of the socket returned from accept is * also non-blocking */ -void * +static void * sock_accept(void *arg) { pthread_t connect_thread; |