987241ea99c99b93aea51bb63bdf579f927e9d2b
kent
  Wed Oct 7 13:46:09 2015 -0700
Fixing copyright on some old essentially public domain files.

diff --git src/inc/gff.h src/inc/gff.h
index 03b035d..85c552f 100644
--- src/inc/gff.h
+++ src/inc/gff.h
@@ -1,21 +1,20 @@
-/*****************************************************************************
- * Copyright (C) 2000 Jim Kent.  This source code may be freely used         *
- * for personal, academic, and non-profit purposes.  Commercial use          *
- * permitted only by explicit agreement with Jim Kent (jim_kent@pacbell.net) *
- *****************************************************************************/
-/* gff.h Parse a GFF or GTF file. */
+/* gff.h Parse a GFF or GTF file. 
+ *
+ * This file is copyright 2000 Jim Kent, but license is hereby
+ * granted for all use - public, private or commercial. */
+
 
 #ifndef GFF_H
 #define GFF_H
 
 struct gffLine
 /* A parsed line in a GFF file. */
     {
     struct gffLine *next;  /* Next line in file */
     char *seq;      /* Name of sequence. */
     char *source;   /* Program that made this line.  Not allocated here. */
     char *feature;  /* Type field. (Intron, CDS, etc). Not allocated here. */
     int start;      /* Start of feature in sequence. Starts with 0, not 1 */
     int end;        /* End of feature in sequence. End is not included. */
     double score;   /* Score. */
     char strand;    /* Strand of sequence feature is on. + or - or .*/