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/hg/synMap/synMapTest.c src/hg/synMap/synMapTest.c
index 7aa48bb..76bdd23 100644
--- src/hg/synMap/synMapTest.c
+++ src/hg/synMap/synMapTest.c
@@ -1,25 +1,28 @@
 /* Test program to see if synmap is reading correctly */
+
+/* Copyright (C) 2011 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
 #include "common.h"
 #include "synMap.h"
 
 
 void usage()
 {
 errAbort("synMapTest - tries to read in a synMap file like those produced\n"
 	 "by Sanja and Robert for the mouse-human synteny map.\n"
 	 "usage:\n"
 	 "\tsynMapTest <file>\n");
 }
 
 int main(int argc, char *argv[])
 {
 struct synMap *smList = NULL;
 if(argc != 2)
     usage();
 warn("Loading from file %s.", argv[1]);
 smList = synMapLoadAll(argv[1]);
 warn("Loaded %d synMaps.", slCount(smList));
 synMapFreeList(&smList);
 warn("Done.");
 return 0;
 }