a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/oneShot/testGitRename/justAnotherTest.c src/oneShot/testGitRename/justAnotherTest.c index 49e6b8c..43f03c1 100644 --- src/oneShot/testGitRename/justAnotherTest.c +++ src/oneShot/testGitRename/justAnotherTest.c @@ -1,23 +1,22 @@ /* testGitRename - Just a little something to test renaming, merging, etc.. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "options.h" #include "upperFile.h" -static char const rcsid[] = "$Id: newProg.c,v 1.30 2010/03/24 21:18:33 hiram Exp $"; void upperFile(char *input, char *output) /* upperFile - convert file to upper case. */ { struct lineFile *lf = lineFileOpen(input, TRUE); FILE *f = mustOpen(output, "w"); char *line; while (lineFileNext(lf, &line, NULL)) { touppers(line); fprintf(f, "%s\n", line); } carefulClose(&f); }