From: <il...@us...> - 2003-11-24 07:05:21
|
Update of /cvsroot/meshdb/src/geo/elev In directory sc8-pr-cvs1:/tmp/cvs-serv21264/elev Modified Files: elev.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: elev.c =================================================================== RCS file: /cvsroot/meshdb/src/geo/elev/elev.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- elev.c 24 Nov 2003 04:49:47 -0000 1.3 +++ elev.c 24 Nov 2003 07:04:48 -0000 1.4 @@ -9,13 +9,14 @@ #include <stdio.h> #include <stdlib.h> #include <unistd.h> -#include <err.h> #include <math.h> + #include "geodesy.h" #include "ntv2.h" #include "alt.h" #include "inclin.h" #include "image.h" +#include "compat/err.h" /* Size of an 'x' or 'o' on the plot */ #define CROSS 6 |