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/lib/numObscure.c src/lib/numObscure.c index f99aab4..4d53b2f 100644 --- src/lib/numObscure.c +++ src/lib/numObscure.c @@ -1,16 +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. */ #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;