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/dyOut.c src/lib/dyOut.c
index a0f4622..193da2b 100644
--- src/lib/dyOut.c
+++ src/lib/dyOut.c
@@ -1,27 +1,27 @@
 // dyOut - DYnamic string stack based OUTput
 //
 // This module relies upon a dyString based stack of buffers which accumulate output
 // for later printing.  As a stack, only the top buffer can be filled and flushed out
 // (duOutFlush).  When flushing, the top buffer's content is appended to the next
 // lower buffer, unless explicitly requested otherwise (dyOutDirectly).
 // If the stack is empty, dyOutPrintf will be equivalent to printf.
 //
 // Output goes to STDOUT unless a single alternative out file is registered.
 
 /* Copyright (C) 2012 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 "dyOut.h"
 
 // The stack of dyString buffers is only accessible locally
 static struct dyString *dyOutStack = NULL;
 #define dyOutAssertToken(token) assert(dyOutPointerToToken(dyOutStack) == token)
 
 // This module defaults to STDOUT but an alternative can be registered
 static FILE *dyOutStream = NULL;
 #define dyOutStreamAssertUnregistered() assert(dyOutStream == stdout || dyOutStream == NULL)
 #define dyOutStreamAssertRegistered(out) assert(dyOutStream == out)
 
 
 INLINE void dyOutStreamInitialize(void)