e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/lib/tests/gff3Tester.c src/lib/tests/gff3Tester.c
index 033287f..d1a36b0 100644
--- src/lib/tests/gff3Tester.c
+++ src/lib/tests/gff3Tester.c
@@ -1,31 +1,34 @@
 /* gff3Tester - tester for GFF3 objects */
 
+/* Copyright (C) 2009 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "gff3.h"
 
 static void usage()
 /* Print usage message */
 {
 errAbort(
    "gff3Tester - tester for GFF3 objects\n"
    "usage:\n"
    "   gff3Tester gff3In gff3Out\n"
    "\n");
 }
 static void gff3Tester(char *gff3InFile, char *gff3OutFile)
 /* tester for GFF3 objects */
 {
 struct gff3File *g3f = gff3FileOpen(gff3InFile, -1, NULL);
 gff3FileWrite(g3f, gff3OutFile);
 gff3FileFree(&g3f);
 }
 
 int main(int argc, char *argv[])
 {
 if (argc != 3)
     usage();
 gff3Tester(argv[1], argv[2]);
 return 0;
 }