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/lav.c src/hg/lib/lav.c index 8cca378..225990f 100644 --- src/hg/lib/lav.c +++ src/hg/lib/lav.c @@ -1,16 +1,19 @@ /* lav.c - common lav file reading routines */ + +/* Copyright (C) 2014 The Regents of the University of California + * See README in this or parent directory for licensing information. */ #include "lav.h" static void unexpectedEof(struct lineFile *lf) /* Squawk about unexpected end of file. */ { errAbort("Unexpected end of file in %s", lf->fileName); } static void seekEndOfStanza(struct lineFile *lf) /* find end of stanza */ { char *line; for (;;) { if (!lineFileNext(lf, &line, NULL))