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/inc/chromInserts.h src/hg/inc/chromInserts.h
index 7c1e6da..e7cc2b1 100644
--- src/hg/inc/chromInserts.h
+++ src/hg/inc/chromInserts.h
@@ -1,18 +1,21 @@
 /* chromInserts - this module helps handle centromeres, heterochromatic regions
  * and other large gaps in chromosomes. */
 
+/* Copyright (C) 2003 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #ifndef CHROMINSERTS_H
 #define CHROMINSERTS_H
 
 struct bigInsert
 /* Describes a big insertion. */
     {
     struct bigInsert *next;	/* Next in list. */
     char *ctgBefore;            /* Contig before insert (or NULL) */
     char *ctgAfter;             /* Contig after insert (or NULL) */
     int size;                   /* Insert size in bases. */
     char *type;			/* 'centromere' 'short_arm' etc. */
     struct chromInserts *chrom; /* Pointer to associated chromosome. */
     };
 
 struct chromInserts