Skip to content
  • Zachary T Welch's avatar
    change #include "server.h" to <server/server.h> · c538a830
    Zachary T Welch authored
    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.
    c538a830