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

diff --git src/inc/crudeali.h src/inc/crudeali.h
index 41f0cb7..2655d97 100644
--- src/inc/crudeali.h
+++ src/inc/crudeali.h
@@ -1,21 +1,18 @@
-/*****************************************************************************
- * 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) *
- *****************************************************************************/
-/* crudeAli.h - Interface to the fast, crude blast-like aligner. */
+/* crudeAli.h - Interface to the fast, crude blast-like aligner. 
+ * This file is copyright 2000 Jim Kent, but license is hereby
+ * granted for all use - public, private or commercial. */
 
 #ifndef CRUDEALI_H
 #define CRUDEALI_H
 
 struct crudeAli
 /* Stored info on a crude alignment. */
     {
     struct crudeAli *next;
     int chromIx;
     int start, end;
     int score;
     char strand;
     int qStart, qEnd;
     };