a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/intExp.c src/lib/intExp.c
index 82a2c52..67c3d2c 100644
--- src/lib/intExp.c
+++ src/lib/intExp.c
@@ -1,25 +1,24 @@
 /* Below is the worlds sleaziest little numerical expression
  * evaluator. Used to do only ints, now does doubles as well. 
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
 #include "kxTok.h"
 
-static char const rcsid[] = "$Id: intExp.c,v 1.6 2003/05/06 07:33:43 kate Exp $";
 
 static struct kxTok *tok;
 
 #define nextTok() (tok = tok->next) 
 
 #ifdef DEBUG
 static void nextTok()
 /* Advance to next token. */
 {
 if (tok == NULL)
     printf("(null)");
 else
     {
     printf("'%s' -> ", tok->string);
     if (tok->next == NULL)