a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/utils/timing/localtime.c src/utils/timing/localtime.c index f17b68c..50a643f 100644 --- src/utils/timing/localtime.c +++ src/utils/timing/localtime.c @@ -1,22 +1,21 @@ /* localtime - command line implementation of localtime() C library function */ #include <stdio.h> #include <time.h> #include <unistd.h> #include <stdlib.h> -static char const rcsid[] = "$Id: localtime.c,v 1.1 2006/05/19 23:49:20 hiram Exp $"; void usage() { fprintf(stderr,"localtime - convert unix timestamp to date string\n"); fprintf(stderr,"usage: localtime <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;