a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/pthreadWrap.c src/lib/pthreadWrap.c
index 0d47404..fcc89b3 100644
--- src/lib/pthreadWrap.c
+++ src/lib/pthreadWrap.c
@@ -1,25 +1,24 @@
 /* pthreadWrap - error checking wrappers around Posix
  * thread functions.  Most of the errors here are invariably
  * fatal, but shouldn't happen unless the kernal or
  * the program is hosed. */
 
 #include "common.h"
 #include "errabort.h"
 #include "pthreadWrap.h"
 
-static char const rcsid[] = "$Id: pthreadWrap.c,v 1.3 2003/05/06 07:33:44 kate Exp $";
 
 static void pwarn(char *function, int err)
 /* Print a warning message on non-zero error code. */
 {
 if (err != 0)
     warn("Couldn't %s: %s\n", function, strerror(err));
 }
 
 static void perr(char *function, int err)
 /* Print out error for function and abort on
  * non-zero error code.. */
 {
 if (err != 0)
     {
     pwarn(function, err);