|
From: <il...@us...> - 2003-11-24 07:05:22
|
Update of /cvsroot/meshdb/src/geo/httphead In directory sc8-pr-cvs1:/tmp/cvs-serv21264/httphead Modified Files: httphead.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: httphead.c =================================================================== RCS file: /cvsroot/meshdb/src/geo/httphead/httphead.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- httphead.c 10 Aug 2002 03:51:32 -0000 1.1.1.1 +++ httphead.c 24 Nov 2003 07:04:48 -0000 1.2 @@ -9,7 +9,8 @@ #include <sys/socket.h> #include <netdb.h> #include <stdlib.h> -#include <err.h> + +#include "compat/err.h" int main(argc, argv) |