diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 2004-06-07 21:11:24 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 2004-06-07 21:11:24 +0000 |
commit | 768c8cdce4390df345d6498b2a3307d67a5749e7 (patch) | |
tree | 00a877e5acbe675ccad443ca71c778ca03852221 /lib/libc/gen | |
parent | ece2fea13db64b72fa79e093ca7679e7a491fdd3 (diff) |
major bump to libc and libpthread to break the dependency of a
particular implementation of libpthread for libc. libc no longer
needs pthread.h to compile.
OK millert@, brad@, tedu@
Diffstat (limited to 'lib/libc/gen')
-rw-r--r-- | lib/libc/gen/getgrent.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/gen/getgrent.c b/lib/libc/gen/getgrent.c index 1d157d679e2..558aea40ff4 100644 --- a/lib/libc/gen/getgrent.c +++ b/lib/libc/gen/getgrent.c @@ -29,7 +29,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: getgrent.c,v 1.20 2004/05/18 02:05:52 jfb Exp $"; +static char rcsid[] = "$OpenBSD: getgrent.c,v 1.21 2004/06/07 21:11:23 marc Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -59,7 +59,6 @@ static struct group_storage { /* File pointers are locked with the 'gr' mutex */ _THREAD_PRIVATE_KEY(gr); -_THREAD_PRIVATE_MUTEX(gr); static FILE *_gr_fp; static struct group _gr_group; static int _gr_stayopen; |