summaryrefslogtreecommitdiff
path: root/lib/libpthread/pthread_cond.c
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>2003-03-08 08:03:34 +0000
committerlukem <lukem@NetBSD.org>2003-03-08 08:03:34 +0000
commitf043c0fb577c0acd8b1b861fe176167e97ea5cd0 (patch)
treeb4f65b0b47289499b02e39995f9099c669bbff6e /lib/libpthread/pthread_cond.c
parente2d78706262ad79322908353a6794238a57c890d (diff)
add __RCSID()
Diffstat (limited to 'lib/libpthread/pthread_cond.c')
-rw-r--r--lib/libpthread/pthread_cond.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libpthread/pthread_cond.c b/lib/libpthread/pthread_cond.c
index 889aa786495..d7917f46eb4 100644
--- a/lib/libpthread/pthread_cond.c
+++ b/lib/libpthread/pthread_cond.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_cond.c,v 1.7 2003/02/15 04:38:33 nathanw Exp $ */
+/* $NetBSD: pthread_cond.c,v 1.8 2003/03/08 08:03:35 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,8 +36,10 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#include <errno.h>
#include <sys/cdefs.h>
+__RCSID("$NetBSD: pthread_cond.c,v 1.8 2003/03/08 08:03:35 lukem Exp $");
+
+#include <errno.h>
#include <sys/time.h>
#include <sys/types.h>