0eef2aee5b088f67bb9612de2fc0ab1ccc75ce02 braney Tue Nov 24 16:39:45 2015 -0800 pipelineTester needs INT_MAX from limits.h thqt is normally included by tabix.h diff --git src/lib/tests/pipelineTester.c src/lib/tests/pipelineTester.c index 39d69a0..af8c9cb 100644 --- src/lib/tests/pipelineTester.c +++ src/lib/tests/pipelineTester.c @@ -1,19 +1,20 @@ /* pipelineTester - test program for pipeline object */ /* Copyright (C) 2013 The Regents of the University of California * See README in this or parent directory for licensing information. */ +#include "limits.h" #include "common.h" #include "pipeline.h" #include "linefile.h" #include "options.h" void usage(char *msg) /* Explain usage and exit. */ { errAbort( "%s\n\n" "pipelineTester - test program for pipeline object\n" "\n" "Usage:\n" " pipelineTester [options] cmdArgs1 [cmdArgs2 ..]\n"