Browse Source

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.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
6db3ed48c6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/openocd.c

+ 1
- 1
src/openocd.c View File

@@ -40,7 +40,7 @@


#include "server.h" #include "server.h"
#include <server/gdb_server.h> #include <server/gdb_server.h>
#include "httpd.h"
#include <server/httpd.h>


#ifdef HAVE_STRINGS_H #ifdef HAVE_STRINGS_H
#include <strings.h> #include <strings.h>


Loading…
Cancel
Save