|
From: <il...@us...> - 2003-11-24 07:04:55
|
Update of /cvsroot/meshdb/src/geo/shift In directory sc8-pr-cvs1:/tmp/cvs-serv21264/shift Modified Files: main.c Log Message: Make compat includes explicit so as to avoid masking the real headers when we want them i.e. force a #include compat/err.h so we can #include <err.h> to pick up the platform's err.h. Index: main.c =================================================================== RCS file: /cvsroot/meshdb/src/geo/shift/main.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- main.c 10 Aug 2002 03:51:33 -0000 1.1.1.1 +++ main.c 24 Nov 2003 07:04:51 -0000 1.2 @@ -21,11 +21,11 @@ #include <stdlib.h> #include <unistd.h> #include <string.h> -#include <err.h> #include <time.h> #include <math.h> #include "ntv2.h" +#include "compat/err.h" #define abs(x) ((x) < 0 ? -(x) : (x)) |