a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/newProg/newProg.c src/utils/newProg/newProg.c
index e398a75..c9f1b1b 100644
--- src/utils/newProg/newProg.c
+++ src/utils/newProg/newProg.c
@@ -1,22 +1,21 @@
 /* newProg - make a new C source skeleton. */
 #include "common.h"
 #include "portable.h"
 #include "dystring.h"
 #include "options.h"
 
-static char const rcsid[] = "$Id: newProg.c,v 1.30 2010/03/24 21:18:33 hiram Exp $";
 
 boolean jkhgap = FALSE;
 boolean cgi = FALSE;
 boolean cvs = FALSE;
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "newProg - make a new C source skeleton.\n"
   "usage:\n"
   "   newProg progName description words\n"
   "This will make a directory 'progName' and a file in it 'progName.c'\n"
   "with a standard skeleton\n"
   "\n"
@@ -127,32 +126,30 @@
 fprintf(f, "#include \"common.h\"\n");
 fprintf(f, "#include \"linefile.h\"\n");
 fprintf(f, "#include \"hash.h\"\n");
 fprintf(f, "#include \"options.h\"\n");
 if (jkhgap || cgi)
     fprintf(f, "#include \"jksql.h\"\n");
 if (cgi)
     {
     fprintf(f, "#include \"htmshell.h\"\n");
     fprintf(f, "#include \"web.h\"\n");
     fprintf(f, "#include \"cheapcgi.h\"\n");
     fprintf(f, "#include \"cart.h\"\n");
     fprintf(f, "#include \"hui.h\"\n");
     }
 fprintf(f, "\n");
-fprintf(f, "static char const rcsid[] = \"$Id: newProg.c,v 1.30 2010/03/24 21:18:33 hiram Exp $\";\n");
-fprintf(f, "\n");
 
 if (cgi)
     makeCgiBody(name, description, f);
 else
     makeCommandLineBody(name, description, f);
 
 }
 
 void makeMakefile(char *progName, char *makeName)
 /* Make makefile. */
 {
 char *upLevel;
 char *L;
 char *myLibs;
 FILE *f = mustOpen(makeName, "w");