4898794edd81be5285ea6e544acbedeaeb31bf78 max Tue Nov 23 08:10:57 2021 -0800 Fixing pointers to README file for license in all source code files. refs #27614 diff --git src/lib/aveStats.c src/lib/aveStats.c index 843f4a8..0d96da2 100644 --- src/lib/aveStats.c +++ src/lib/aveStats.c @@ -1,17 +1,17 @@ /* Copyright (C) 2016 The Regents of the University of California - * See README in this or parent directory for licensing information. */ + * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */ #include "common.h" #include "aveStats.h" static int cmpDouble(const void *va, const void *vb) /* Compare two doubles. */ { const double *a = va; const double *b = vb; double diff = *a - *b; if (diff < 0) return -1; else if (diff > 0) return 1; else