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/numObscure.c src/lib/numObscure.c index 4d53b2f..d27c4db 100644 --- src/lib/numObscure.c +++ src/lib/numObscure.c @@ -1,19 +1,19 @@ /* numObscure - obscure but sometimes useful numerical functions. */ /* Copyright (C) 2009 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 "obscure.h" static void rangeIncludingZero(double start, double end, double *retStart, double *retEnd) /* If start == end, then make range go from zero to the start/end value. */ { if (start < 0.0) { *retStart = start; *retEnd = 0; } else if (start > 0.0) { *retStart = 0; *retEnd = end;