|
From: <il...@us...> - 2003-11-24 07:05:25
|
Update of /cvsroot/meshdb/src/geo/rf In directory sc8-pr-cvs1:/tmp/cvs-serv21264/rf 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/rf/main.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- main.c 24 Nov 2003 05:18:47 -0000 1.4 +++ main.c 24 Nov 2003 07:04:51 -0000 1.5 @@ -10,7 +10,8 @@ #include <string.h> #include <math.h> #include <errno.h> -#include <err.h> + +#include "compat/err.h" #include "geodesy.h" int classic = 0; /* classic degree angles */ |