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/hg/lib/chromBins.c src/hg/lib/chromBins.c index dcdda07..de54f5c 100644 --- src/hg/lib/chromBins.c +++ src/hg/lib/chromBins.c @@ -1,16 +1,19 @@ /* chromBins - object for storing per-chrom binKeeper objects */ + +/* Copyright (C) 2014 The Regents of the University of California + * See README in this or parent directory for licensing information. */ #include "common.h" #include "chromBins.h" #include "binRange.h" #include "hash.h" /* Sized hold a very larger chromosome. */ static const int MAX_CHROM_SIZE = 1000000000; struct chromBins *chromBinsNew(chromBinsFreeFunc *freeFunc) /* create a new chromBins object */ { struct chromBins *chromBins; AllocVar(chromBins); chromBins->freeFunc = freeFunc;