change #include "httpd.h" to <server/httpd.h>

Changes from the flat namespace to heirarchical one.  Instead of writing:

	#include "httpd.h"

the following form should be used.

	#include <server/httpd.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch 2009-12-03 04:15:03 -08:00
parent 5e7369d99a
commit 6db3ed48c6
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
#include "server.h"
#include <server/gdb_server.h>
#include "httpd.h"
#include <server/httpd.h>
#ifdef HAVE_STRINGS_H
#include <strings.h>