6e5ee11ca95cd971984038cf65bae00d9c898707 galt Wed Jun 4 15:40:02 2014 -0700 Since we have git, it is easy to rename errabort.c to errAbort.c without losing any history. diff --git src/cdnaAli/g2cCheck/g2cCheck.c src/cdnaAli/g2cCheck/g2cCheck.c index 29c712e..a2386df 100644 --- src/cdnaAli/g2cCheck/g2cCheck.c +++ src/cdnaAli/g2cCheck/g2cCheck.c @@ -1,21 +1,21 @@ /* c2gcheck - this compares two c2g files and notes the differences. * It produces a third file which is the first one updated by the * second. */ #include "common.h" -#include "errabort.h" +#include "errAbort.h" #include "hash.h" #include "localmem.h" FILE *errFile; void reportWarning(char *format, va_list args) /* Print a warning message */ { vfprintf(errFile, format, args); } struct lm *memPool; #define alloc(size) lmAlloc(memPool, (size))