Update of /cvsroot/meshdb/src/geo/alt
In directory sc8-pr-cvs1:/tmp/cvs-serv21264/alt
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/alt/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:32 -0000 1.1.1.1
+++ main.c 24 Nov 2003 07:04:47 -0000 1.2
@@ -17,9 +17,10 @@
#include <math.h>
#include <fcntl.h>
#include <ieeefp.h>
-#include <err.h>
+
#include "alt.h"
#include "image.h"
+#include "compat/err.h"
#define CROSS 2
#define CROSS2 3
|