a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/htmlPics/htmlPics.c src/utils/htmlPics/htmlPics.c
index c9daa62..1e3cf83 100644
--- src/utils/htmlPics/htmlPics.c
+++ src/utils/htmlPics/htmlPics.c
@@ -1,31 +1,30 @@
 /* Create a html file from a list of pictures in the command line. */
 #include "common.h"
 #include "htmshell.h"
 
-static char const rcsid[] = "$Id: htmlPics.c,v 1.3 2003/06/10 17:19:33 kent Exp $";
 
 void usage()
 /* Print usage instructions and bail. */
 {
 errAbort("htmlPics - create an html file from a list of pictures\n"
          "usage\n"
 	 "    htmlPics picFile(s)\n"
 	 "The html will be printed to standard out.");
 }
 
 int main(int argc, char *argv[])
 {
 int i;
 char *picName;
 
 if (argc < 2)
     usage();
 htmStart(stdout, "Some Pics");
 for (i=1; i<argc; ++i)
     {
     picName = argv[i];
     printf("<IMG SRC=\"%s\">\n", picName);
     }
 htmEnd(stdout);
 return 0;
 }