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

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

	#include "server.h"

the following form should be used.

	#include <server/server.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 6db3ed48c6
commit c538a830cd
6 changed files with 6 additions and 6 deletions

View File

@@ -26,7 +26,7 @@
#include "configuration.h"
// @todo the inclusion of server.h here is a layering violation
#include "server.h"
#include <server/server.h>
#include <getopt.h>