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/lib/chromInserts.c src/hg/lib/chromInserts.c
index cae6768..aef386b 100644
--- src/hg/lib/chromInserts.c
+++ src/hg/lib/chromInserts.c
@@ -1,18 +1,21 @@
 /* chromInserts - this module helps handle centromeres, heterochromatic regions
  * and other large gaps in chromosomes. */
 
+/* Copyright (C) 2014 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "chromInserts.h"
 
 
 static char *dashIsNull(char *s)
 /* Return cloned copy of string, or NULL if it's just a dash. */
 {
 if (sameString(s, "-"))
     return NULL;
 else
     return cloneString(s);
 }