12c1425efebb7ddd968ee476054b13d721df8df8
angie
  Tue Dec 18 11:47:17 2012 -0800
Code Review #9844 - Hiram pointed out that localmem.h is not protectedagainst multiple inclusion; fixed.  Also cleaned up some redundant
inclusions of localmem.h in files that already include bbiFile.h.

diff --git src/lib/bwgValsOnChrom.c src/lib/bwgValsOnChrom.c
index 1a96b7a..cd8b59a 100644
--- src/lib/bwgValsOnChrom.c
+++ src/lib/bwgValsOnChrom.c
@@ -1,21 +1,20 @@
 /* bwgValsOnChrom - implements the bigWigValsOnChrom access to bigWig. */
 
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
-#include "localmem.h"
 #include "bits.h"
 #include "sig.h"
 #include "udc.h"
 #include "zlibFace.h"
 #include "bbiFile.h"
 #include "bwgInternal.h"
 #include "bigWig.h"
 
 struct bigWigValsOnChrom *bigWigValsOnChromNew()
 /* Allocate new empty bigWigValsOnChromStructure. */
 {
 return needMem(sizeof(struct bigWigValsOnChrom));
 }
 
 void bigWigValsOnChromFree(struct bigWigValsOnChrom **pChromVals)