a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/timing/gmtime.c src/utils/timing/gmtime.c
index 20a3b48..d577758 100644
--- src/utils/timing/gmtime.c
+++ src/utils/timing/gmtime.c
@@ -1,22 +1,21 @@
 /* gmtime - command line implementation of gmtime() C library function	*/
 #include	<stdio.h>
 #include	<time.h>
 #include	<unistd.h>
 #include	<stdlib.h>
 
-static char const rcsid[] = "$Id: gmtime.c,v 1.1 2006/05/19 23:49:19 hiram Exp $";
 
 void usage()
 {
 fprintf(stderr,"gmtime - convert unix timestamp to date string\n");
 fprintf(stderr,"usage: gmtime <time stamp>\n");
 fprintf(stderr,"\t<time stamp> - integer 0 to 2147483647\n");
 }
 
 int
 main( int argc, char **argv)
 {
 int timeStamp;
 time_t timep;
 struct tm *tm;